From eb2bdc8db955474f37599145db118850fd230e68 Mon Sep 17 00:00:00 2001 From: Akshay Pushparaj Date: Fri, 15 Aug 2025 06:07:32 +0530 Subject: [PATCH] Postal reports first commit --- .ruby-version | 1 + Gemfile | 79 + Gemfile.lock | 277 + README.md | 15 + Rakefile | 6 + app/assets/config/manifest.js | 4 + app/assets/images/.keep | 0 app/assets/images/mail-report.svg | 1 + app/assets/stylesheets/application.css | 17 + app/assets/stylesheets/application.scss | 30 + app/assets/stylesheets/fomantic.css.scss | 1 + app/channels/application_cable/channel.rb | 4 + app/channels/application_cable/connection.rb | 4 + app/controllers/.messages_controller.rb.swp | Bin 0 -> 16384 bytes app/controllers/.reports_controller.rb.swp | Bin 0 -> 12288 bytes app/controllers/application_controller.rb | 3 + app/controllers/concerns/.keep | 0 app/controllers/deliveries_controller.rb | 70 + app/controllers/home_controller.rb | 4 + app/controllers/messages_controller.rb | 104 + app/controllers/reports_controller.rb | 88 + app/helpers/application_helper.rb | 3 + app/helpers/deliveries_helper.rb | 2 + app/helpers/messages_helper.rb | 2 + app/helpers/reports_helper.rb | 2 + app/javascript/.application.js.swp | Bin 0 -> 12288 bytes app/javascript/application.js | 4 + app/javascript/controllers/application.js | 9 + .../controllers/hello_controller.js | 7 + app/javascript/controllers/index.js | 11 + app/javascript/reports.js | 2 + app/jobs/application_job.rb | 7 + app/mailers/application_mailer.rb | 4 + app/models/.report.rb.swo | Bin 0 -> 12288 bytes app/models/.report.rb.swp | Bin 0 -> 12288 bytes app/models/application_record.rb | 3 + app/models/concerns/.keep | 0 app/models/delivery.rb | 4 + app/models/message.rb | 10 + app/models/report.rb | 23 + app/views/deliveries/_delivery.html.erb | 47 + app/views/deliveries/_delivery.json.jbuilder | 2 + app/views/deliveries/_form.html.erb | 62 + app/views/deliveries/edit.html.erb | 10 + app/views/deliveries/index.html.erb | 14 + app/views/deliveries/index.json.jbuilder | 1 + app/views/deliveries/new.html.erb | 9 + app/views/deliveries/show.html.erb | 10 + app/views/deliveries/show.json.jbuilder | 1 + app/views/home/index.html.erb | 0 app/views/layouts/application.html.erb | 44 + app/views/messages/.index.html.erb.swp | Bin 0 -> 12288 bytes app/views/messages/_form.html.erb | 187 + app/views/messages/_message.html.erb | 15 + app/views/messages/_message.json.jbuilder | 2 + app/views/messages/edit.html.erb | 10 + app/views/messages/index.html.erb | 35 + app/views/messages/index.json.jbuilder | 1 + app/views/messages/new.html.erb | 9 + app/views/messages/show.html.erb | 10 + app/views/messages/show.json.jbuilder | 1 + app/views/reports/.index.html.erb.swo | Bin 0 -> 12288 bytes app/views/reports/.index.html.erb.swp | Bin 0 -> 12288 bytes app/views/reports/.search.html.erb.swp | Bin 0 -> 12288 bytes app/views/reports/export.html.erb | 0 app/views/reports/index.html.erb | 58 + app/views/reports/search.html.erb | 67 + bin/bundle | 109 + bin/importmap | 4 + bin/rails | 4 + bin/rake | 4 + bin/setup | 33 + config.ru | 6 + config/application.rb | 22 + config/boot.rb | 4 + config/cable.yml | 11 + config/credentials.yml.enc | 1 + config/database.yml | 29 + config/environment.rb | 5 + config/environments/development.rb | 70 + config/environments/production.rb | 93 + config/environments/test.rb | 60 + config/importmap.rb | 12 + config/initializers/assets.rb | 13 + .../initializers/content_security_policy.rb | 25 + .../initializers/filter_parameter_logging.rb | 8 + config/initializers/inflections.rb | 16 + config/initializers/pagy.rb | 220 + config/initializers/permissions_policy.rb | 11 + config/initializers/postal_config.rb | 1 + config/locales/en.yml | 33 + config/postal.yml | 13 + config/puma.rb | 43 + config/routes.rb | 9 + config/storage.yml | 34 + db/schema.rb | 251 + db/seeds.rb | 7 + index.html.erb | 61 + lib/assets/.keep | 0 lib/tasks/.keep | 0 log/.keep | 0 mail_delivery_report.csv | 12449 ++++++++++++++++ public/404.html | 67 + public/422.html | 67 + public/500.html | 66 + public/apple-touch-icon-precomposed.png | 0 public/apple-touch-icon.png | 0 public/favicon.ico | 0 public/robots.txt | 1 + storage/.keep | 0 test/application_system_test_case.rb | 5 + .../application_cable/connection_test.rb | 11 + test/controllers/.keep | 0 .../controllers/deliveries_controller_test.rb | 48 + test/controllers/messages_controller_test.rb | 48 + test/fixtures/deliveries.yml | 23 + test/fixtures/files/.keep | 0 test/fixtures/messages.yml | 73 + test/helpers/.keep | 0 test/integration/.keep | 0 test/mailers/.keep | 0 test/models/.keep | 0 test/models/delivery_test.rb | 7 + test/models/message_test.rb | 7 + test/system/.keep | 0 test/system/deliveries_test.rb | 57 + test/system/messages_test.rb | 107 + test/test_helper.rb | 13 + tmp/.keep | 0 tmp/pids/.keep | 0 tmp/storage/.keep | 0 vendor/.keep | 0 vendor/javascript/.keep | 0 133 files changed, 15657 insertions(+) create mode 100644 .ruby-version create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 README.md create mode 100644 Rakefile create mode 100644 app/assets/config/manifest.js create mode 100644 app/assets/images/.keep create mode 100644 app/assets/images/mail-report.svg create mode 100644 app/assets/stylesheets/application.css create mode 100644 app/assets/stylesheets/application.scss create mode 100644 app/assets/stylesheets/fomantic.css.scss create mode 100644 app/channels/application_cable/channel.rb create mode 100644 app/channels/application_cable/connection.rb create mode 100644 app/controllers/.messages_controller.rb.swp create mode 100644 app/controllers/.reports_controller.rb.swp create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/concerns/.keep create mode 100644 app/controllers/deliveries_controller.rb create mode 100644 app/controllers/home_controller.rb create mode 100644 app/controllers/messages_controller.rb create mode 100644 app/controllers/reports_controller.rb create mode 100644 app/helpers/application_helper.rb create mode 100644 app/helpers/deliveries_helper.rb create mode 100644 app/helpers/messages_helper.rb create mode 100644 app/helpers/reports_helper.rb create mode 100644 app/javascript/.application.js.swp create mode 100644 app/javascript/application.js create mode 100644 app/javascript/controllers/application.js create mode 100644 app/javascript/controllers/hello_controller.js create mode 100644 app/javascript/controllers/index.js create mode 100644 app/javascript/reports.js create mode 100644 app/jobs/application_job.rb create mode 100644 app/mailers/application_mailer.rb create mode 100644 app/models/.report.rb.swo create mode 100644 app/models/.report.rb.swp create mode 100644 app/models/application_record.rb create mode 100644 app/models/concerns/.keep create mode 100644 app/models/delivery.rb create mode 100644 app/models/message.rb create mode 100644 app/models/report.rb create mode 100644 app/views/deliveries/_delivery.html.erb create mode 100644 app/views/deliveries/_delivery.json.jbuilder create mode 100644 app/views/deliveries/_form.html.erb create mode 100644 app/views/deliveries/edit.html.erb create mode 100644 app/views/deliveries/index.html.erb create mode 100644 app/views/deliveries/index.json.jbuilder create mode 100644 app/views/deliveries/new.html.erb create mode 100644 app/views/deliveries/show.html.erb create mode 100644 app/views/deliveries/show.json.jbuilder create mode 100644 app/views/home/index.html.erb create mode 100644 app/views/layouts/application.html.erb create mode 100644 app/views/messages/.index.html.erb.swp create mode 100644 app/views/messages/_form.html.erb create mode 100644 app/views/messages/_message.html.erb create mode 100644 app/views/messages/_message.json.jbuilder create mode 100644 app/views/messages/edit.html.erb create mode 100644 app/views/messages/index.html.erb create mode 100644 app/views/messages/index.json.jbuilder create mode 100644 app/views/messages/new.html.erb create mode 100644 app/views/messages/show.html.erb create mode 100644 app/views/messages/show.json.jbuilder create mode 100644 app/views/reports/.index.html.erb.swo create mode 100644 app/views/reports/.index.html.erb.swp create mode 100644 app/views/reports/.search.html.erb.swp create mode 100644 app/views/reports/export.html.erb create mode 100644 app/views/reports/index.html.erb create mode 100644 app/views/reports/search.html.erb create mode 100755 bin/bundle create mode 100755 bin/importmap create mode 100755 bin/rails create mode 100755 bin/rake create mode 100755 bin/setup create mode 100644 config.ru create mode 100644 config/application.rb create mode 100644 config/boot.rb create mode 100644 config/cable.yml create mode 100644 config/credentials.yml.enc create mode 100644 config/database.yml create mode 100644 config/environment.rb create mode 100644 config/environments/development.rb create mode 100644 config/environments/production.rb create mode 100644 config/environments/test.rb create mode 100755 config/importmap.rb create mode 100644 config/initializers/assets.rb create mode 100644 config/initializers/content_security_policy.rb create mode 100644 config/initializers/filter_parameter_logging.rb create mode 100644 config/initializers/inflections.rb create mode 100644 config/initializers/pagy.rb create mode 100644 config/initializers/permissions_policy.rb create mode 100644 config/initializers/postal_config.rb create mode 100644 config/locales/en.yml create mode 100644 config/postal.yml create mode 100644 config/puma.rb create mode 100644 config/routes.rb create mode 100644 config/storage.yml create mode 100644 db/schema.rb create mode 100644 db/seeds.rb create mode 100644 index.html.erb create mode 100644 lib/assets/.keep create mode 100644 lib/tasks/.keep create mode 100644 log/.keep create mode 100644 mail_delivery_report.csv create mode 100644 public/404.html create mode 100644 public/422.html create mode 100644 public/500.html create mode 100644 public/apple-touch-icon-precomposed.png create mode 100644 public/apple-touch-icon.png create mode 100644 public/favicon.ico create mode 100644 public/robots.txt create mode 100644 storage/.keep create mode 100644 test/application_system_test_case.rb create mode 100644 test/channels/application_cable/connection_test.rb create mode 100644 test/controllers/.keep create mode 100644 test/controllers/deliveries_controller_test.rb create mode 100644 test/controllers/messages_controller_test.rb create mode 100644 test/fixtures/deliveries.yml create mode 100644 test/fixtures/files/.keep create mode 100644 test/fixtures/messages.yml create mode 100644 test/helpers/.keep create mode 100644 test/integration/.keep create mode 100644 test/mailers/.keep create mode 100644 test/models/.keep create mode 100644 test/models/delivery_test.rb create mode 100644 test/models/message_test.rb create mode 100644 test/system/.keep create mode 100644 test/system/deliveries_test.rb create mode 100644 test/system/messages_test.rb create mode 100644 test/test_helper.rb create mode 100644 tmp/.keep create mode 100644 tmp/pids/.keep create mode 100644 tmp/storage/.keep create mode 100644 vendor/.keep create mode 100644 vendor/javascript/.keep diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..14dbd37 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +ruby-3.0.6 diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..ccf2164 --- /dev/null +++ b/Gemfile @@ -0,0 +1,79 @@ +source "https://rubygems.org" +git_source(:github) { |repo| "https://github.com/#{repo}.git" } + +ruby "3.1.4" + + +# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" +gem "rails", "~> 7.0.8", ">= 7.0.8.1" + +# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] +gem "sprockets-rails" + +# Use sqlite3 as the database for Active Record +gem "sqlite3", "~> 1.4" +gem "json" +gem "mysql2" + +# Use the Puma web server [https://github.com/puma/puma] +gem "puma" + +# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails] +gem "importmap-rails" + +# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev] +gem "turbo-rails" + +# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev] +gem "stimulus-rails" + +# Build JSON APIs with ease [https://github.com/rails/jbuilder] +gem "jbuilder" + +# Use Redis adapter to run Action Cable in production +gem "redis", "~> 4.0" + +# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis] +# gem "kredis" + +# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] +# gem "bcrypt", "~> 3.1.7" + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ] + +# Reduces boot times through caching; required in config/boot.rb +gem "bootsnap", require: false +gem 'pagy', '~> 9.2' +gem 'bootstrap', '~> 5.3.3' +gem "sass-rails", "~> 6.0" +gem "jquery-rails", "~> 4.6" + +# Use Sass to process CSS +# gem "sassc-rails" + +# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images] +# gem "image_processing", "~> 1.2" + +group :development, :test do + # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem + gem "debug", platforms: %i[ mri mingw x64_mingw ] +end + +group :development do + # Use console on exceptions pages [https://github.com/rails/web-console] + gem "web-console" + + # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler] + # gem "rack-mini-profiler" + + # Speed up commands on slow machines / big apps [https://github.com/rails/spring] + # gem "spring" +end + +group :test do + # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing] + gem "capybara" + gem "selenium-webdriver" + +end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..304ae78 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,277 @@ +GEM + remote: https://rubygems.org/ + specs: + actioncable (7.0.8.4) + actionpack (= 7.0.8.4) + activesupport (= 7.0.8.4) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + actionmailbox (7.0.8.4) + actionpack (= 7.0.8.4) + activejob (= 7.0.8.4) + activerecord (= 7.0.8.4) + activestorage (= 7.0.8.4) + activesupport (= 7.0.8.4) + mail (>= 2.7.1) + net-imap + net-pop + net-smtp + actionmailer (7.0.8.4) + actionpack (= 7.0.8.4) + actionview (= 7.0.8.4) + activejob (= 7.0.8.4) + activesupport (= 7.0.8.4) + mail (~> 2.5, >= 2.5.4) + net-imap + net-pop + net-smtp + rails-dom-testing (~> 2.0) + actionpack (7.0.8.4) + actionview (= 7.0.8.4) + activesupport (= 7.0.8.4) + rack (~> 2.0, >= 2.2.4) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.2.0) + actiontext (7.0.8.4) + actionpack (= 7.0.8.4) + activerecord (= 7.0.8.4) + activestorage (= 7.0.8.4) + activesupport (= 7.0.8.4) + globalid (>= 0.6.0) + nokogiri (>= 1.8.5) + actionview (7.0.8.4) + activesupport (= 7.0.8.4) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.1, >= 1.2.0) + activejob (7.0.8.4) + activesupport (= 7.0.8.4) + globalid (>= 0.3.6) + activemodel (7.0.8.4) + activesupport (= 7.0.8.4) + activerecord (7.0.8.4) + activemodel (= 7.0.8.4) + activesupport (= 7.0.8.4) + activestorage (7.0.8.4) + actionpack (= 7.0.8.4) + activejob (= 7.0.8.4) + activerecord (= 7.0.8.4) + activesupport (= 7.0.8.4) + marcel (~> 1.0) + mini_mime (>= 1.1.0) + activesupport (7.0.8.4) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + addressable (2.8.6) + public_suffix (>= 2.0.2, < 6.0) + autoprefixer-rails (10.4.19.0) + execjs (~> 2) + base64 (0.2.0) + bindex (0.8.1) + bootsnap (1.18.3) + msgpack (~> 1.2) + bootstrap (5.3.3) + autoprefixer-rails (>= 9.1.0) + popper_js (>= 2.11.8, < 3) + builder (3.3.0) + capybara (3.40.0) + addressable + matrix + mini_mime (>= 0.1.3) + nokogiri (~> 1.11) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (>= 1.5, < 3.0) + xpath (~> 3.2) + concurrent-ruby (1.3.3) + crass (1.0.6) + date (3.3.4) + debug (1.9.2) + irb (~> 1.10) + reline (>= 0.3.8) + erubi (1.12.0) + execjs (2.10.0) + ffi (1.17.0-x86_64-linux-gnu) + font-awesome-rails (4.7.0.9) + railties (>= 3.2, < 9.0) + globalid (1.2.1) + activesupport (>= 6.1) + i18n (1.14.5) + concurrent-ruby (~> 1.0) + importmap-rails (2.0.1) + actionpack (>= 6.0.0) + activesupport (>= 6.0.0) + railties (>= 6.0.0) + io-console (0.7.2) + irb (1.13.1) + rdoc (>= 4.0.0) + reline (>= 0.4.2) + jbuilder (2.12.0) + actionview (>= 5.0.0) + activesupport (>= 5.0.0) + jquery-rails (4.6.0) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + json (2.7.2) + loofah (2.22.0) + crass (~> 1.0.2) + nokogiri (>= 1.12.0) + mail (2.8.1) + mini_mime (>= 0.1.1) + net-imap + net-pop + net-smtp + marcel (1.0.4) + matrix (0.4.2) + method_source (1.1.0) + mini_mime (1.1.5) + minitest (5.23.1) + msgpack (1.7.2) + mysql2 (0.5.6) + net-imap (0.4.12) + date + net-protocol + net-pop (0.1.2) + net-protocol + net-protocol (0.2.2) + timeout + net-smtp (0.5.0) + net-protocol + nio4r (2.7.3) + nokogiri (1.16.5-x86_64-linux) + racc (~> 1.4) + pagy (9.2.2) + popper_js (2.11.8) + psych (5.1.2) + stringio + public_suffix (5.0.5) + puma (6.4.2) + nio4r (~> 2.0) + racc (1.8.0) + rack (2.2.9) + rack-test (2.1.0) + rack (>= 1.3) + rails (7.0.8.4) + actioncable (= 7.0.8.4) + actionmailbox (= 7.0.8.4) + actionmailer (= 7.0.8.4) + actionpack (= 7.0.8.4) + actiontext (= 7.0.8.4) + actionview (= 7.0.8.4) + activejob (= 7.0.8.4) + activemodel (= 7.0.8.4) + activerecord (= 7.0.8.4) + activestorage (= 7.0.8.4) + activesupport (= 7.0.8.4) + bundler (>= 1.15.0) + railties (= 7.0.8.4) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest + nokogiri (>= 1.6) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) + railties (7.0.8.4) + actionpack (= 7.0.8.4) + activesupport (= 7.0.8.4) + method_source + rake (>= 12.2) + thor (~> 1.0) + zeitwerk (~> 2.5) + rake (13.2.1) + rdoc (6.7.0) + psych (>= 4.0.0) + redis (4.8.1) + regexp_parser (2.9.2) + reline (0.5.8) + io-console (~> 0.5) + rexml (3.3.0) + strscan + rubyzip (2.3.2) + sass-rails (6.0.0) + sassc-rails (~> 2.1, >= 2.1.1) + sassc (2.4.0) + ffi (~> 1.9) + sassc-rails (2.1.2) + railties (>= 4.0.0) + sassc (>= 2.0) + sprockets (> 3.0) + sprockets-rails + tilt + selenium-webdriver (4.21.1) + base64 (~> 0.2) + rexml (~> 3.2, >= 3.2.5) + rubyzip (>= 1.2.2, < 3.0) + websocket (~> 1.0) + sprockets (4.2.1) + concurrent-ruby (~> 1.0) + rack (>= 2.2.4, < 4) + sprockets-rails (3.5.1) + actionpack (>= 6.1) + activesupport (>= 6.1) + sprockets (>= 3.0.0) + sqlite3 (1.7.3-x86_64-linux) + stimulus-rails (1.3.3) + railties (>= 6.0.0) + stringio (3.1.0) + strscan (3.1.0) + thor (1.3.1) + tilt (2.4.0) + timeout (0.4.1) + turbo-rails (2.0.5) + actionpack (>= 6.0.0) + activejob (>= 6.0.0) + railties (>= 6.0.0) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + web-console (4.2.1) + actionview (>= 6.0.0) + activemodel (>= 6.0.0) + bindex (>= 0.4.0) + railties (>= 6.0.0) + websocket (1.2.10) + websocket-driver (0.7.6) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + xpath (3.2.0) + nokogiri (~> 1.8) + zeitwerk (2.6.15) + +PLATFORMS + x86_64-linux + +DEPENDENCIES + bootsnap + bootstrap (~> 5.3.3) + capybara + debug + font-awesome-rails + importmap-rails + jbuilder + jquery-rails (~> 4.6) + json + mysql2 + pagy (~> 9.2) + puma + rails (~> 7.0.8, >= 7.0.8.1) + redis (~> 4.0) + sass-rails (~> 6.0) + selenium-webdriver + sprockets-rails + sqlite3 (~> 1.4) + stimulus-rails + turbo-rails + tzinfo-data + web-console + +RUBY VERSION + ruby 3.1.4p223 + +BUNDLED WITH + 2.3.26 diff --git a/README.md b/README.md new file mode 100644 index 0000000..a9edab7 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +Postal mail reports app + + +# Usage + +``` +# install dependencies +bundle install + +# Start server +rails s +``` + + + diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..9a5ea73 --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require_relative "config/application" + +Rails.application.load_tasks diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js new file mode 100644 index 0000000..ddd546a --- /dev/null +++ b/app/assets/config/manifest.js @@ -0,0 +1,4 @@ +//= link_tree ../images +//= link_directory ../stylesheets .css +//= link_tree ../../javascript .js +//= link_tree ../../../vendor/javascript .js diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/assets/images/mail-report.svg b/app/assets/images/mail-report.svg new file mode 100644 index 0000000..92200bd --- /dev/null +++ b/app/assets/images/mail-report.svg @@ -0,0 +1 @@ +expand-black-emailsCreated by Heztasiafrom the Noun Project \ No newline at end of file diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css new file mode 100644 index 0000000..a965afd --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,17 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's + * vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any other CSS + * files in this directory. Styles in this file should be added after the last require_* statement. + * It is generally better to create a new file per style scope. + * + *= require_tree . + *= require_self + */ + +@import "semantic-ui"; diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss new file mode 100644 index 0000000..c70e7f9 --- /dev/null +++ b/app/assets/stylesheets/application.scss @@ -0,0 +1,30 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's + * vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any other CSS + * files in this directory. Styles in this file should be added after the last require_* statement. + * It is generally better to create a new file per style scope. + * + *= require_tree . + *= require_self + */ +@import "bootstrap"; + + +.easypush-nav { + background-color: #e8f1ff; + color: #006666; +} + +body { + color: #1a000d; +} + +.table-color { + color: #1a000d; +} diff --git a/app/assets/stylesheets/fomantic.css.scss b/app/assets/stylesheets/fomantic.css.scss new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/app/assets/stylesheets/fomantic.css.scss @@ -0,0 +1 @@ + diff --git a/app/channels/application_cable/channel.rb b/app/channels/application_cable/channel.rb new file mode 100644 index 0000000..d672697 --- /dev/null +++ b/app/channels/application_cable/channel.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Channel < ActionCable::Channel::Base + end +end diff --git a/app/channels/application_cable/connection.rb b/app/channels/application_cable/connection.rb new file mode 100644 index 0000000..0ff5442 --- /dev/null +++ b/app/channels/application_cable/connection.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Connection < ActionCable::Connection::Base + end +end diff --git a/app/controllers/.messages_controller.rb.swp b/app/controllers/.messages_controller.rb.swp new file mode 100644 index 0000000000000000000000000000000000000000..e3372c16437b45285162d01c1b32061fff15301e GIT binary patch literal 16384 zcmeHOUu+yl8Q+GIKq0g$2vta+$y(N(v9osmP|~X%+ljB?LhVGpOGPoK)!y!$Z7 z?ao{rH)kk_e-D5VPk@A|1iXRz(pQlBgwzM95E2qRfP_>b@xlXtC8YA3nf>RpuW>4n z0L@81@6IGHFkl$? zKVd+`$E?qwEyvRKY^B!+#;$Km(XFs1BL;^fMLKeU>GnA z7zPXj|Ah>Afn~jfVE>#9@Nxd1#s5El*s@*(z6;z17_bF6@3E|hfxloQ;8(!s0UP)L z@XvQ!*7txXfpft7f#bm6-(^{U1AY(u2>1c;BJedJ2Cf570q+C;@Q`Kw4)`tbD)2+# zE5PS~HQ@DkTGnrX?*rckz5#p{xD9*)xBxi7pWlHz;7h;;um&swPXZqV-Z%lDfWHDi z0bT&sfro%&zyrYR$1UqM;HSVhfv*G416P1mU8pjsyRAyJh_t_$;ss+yO2D ze|*rgeg=FQJih=u2Rs2t-d_R#F9Y8Jz6Gcs9RwD^FS`;Fdx_WQPC_$bnx!vUIgT5* z8%DHhPu<vWnwJjMFi*Dq|-Jh0-Xs zY*o^aG~6(#wD(3+cT=gf&`nssEKK}ZxPp~MeAu~3eW69IuumONRJ96$6h05>$CdVs z!$s1Sf@)sm5}%Jba#3+K!M6W-JnN2xXFa{0=2` zg7`nfwG##z!H#T$;y0J1RGboYtd}I-&eQMjc70BbeJI7njJHh4U9a^3li1 zGQrSO9h&C{^J(S`M&oc0RL{=rk@ZV9sU2SS?D=xRkE3AGM&XGe&yxWapoQ;!YLE`( zm6e3@VI;UiJ-HsqqWsm zebj2K*GJ99C-JAX+Pcvkt<|4yJX7C%maNrVtBt3dxlO5-ERm<=GsI##sM@Np4tv_> zi0#2s{xKx=9 zJVDijru@MeEPC*0I!Y>L?fpHK8(OqyiF_%!1A0fefw!9)D>Y2{Az0fPgwe7b<{6=R z2JOdUcR6!2C+?t^+6%j|vA@?#dSL%lPJptkDycsOm&M&dTiI)v7xVRE#;RbMvu}}8 z!QPZn%=!1=Q*u6mQJq!dBAb4Q`i+mCx4@}jn$a;fgi1;A4F;Qu?@0Qb}BNfI*Fh{=wrmyRS?x+br=b8@grL8exz6nHg`@T}_x zU1pcl=@cd>ak=iyXNNIwWVL)KVCJZ*)fwt=TFq+a!yJn`44jb6k_(TYUszBnPNZ`O zi#mFI=++aG>wt|Tn2>hvp;)})#W%emVcHo-C5pIF3T!lUfS7 zCFB2JAV&WX;&&PU%ZvQIfmr|7z-z!4fdse$ECUyT6TqLa5Ab1Bknz8)|5#R8t1y2J z1BL;^fMLKeU>GnA7zPXjh5^IC{{#bi-!0pH%dXj0DGuSD8;015uBD;aj1yxwDHPS3 zj%*R9`8WueBeg7!CAA{RMXo*qLw*r5B2k32sK|!c9YxTL9dm}d1AXr&G@t_!dXY}+ zZ5kBn(MXn6F)pbc9tlIMx8n-06Dikl-(kV7RwQ$J)WbGC*8)VqF`{~^w8mavD#yh| z%Mw{#^b+cc{04EiI*EaxgCiba7ST5@0$8n5c-xRh3|6F89|7qtb(c_|;$SjxcS6x~ zIggOrV^QGZfFewAs!$V&C(F7~IJm`2>98;VTO0zlCyoc8*x-$&$+^21ne5#S%=aWaYlfxXNQ h6+0AXnR<7CJJ1v-;ce`ztL=sB*P5jxoWu4P{smjM0WAOk literal 0 HcmV?d00001 diff --git a/app/controllers/.reports_controller.rb.swp b/app/controllers/.reports_controller.rb.swp new file mode 100644 index 0000000000000000000000000000000000000000..2c804b9a45ba672a7a67ea8b5230f6d56d787f0e GIT binary patch literal 12288 zcmeI2O>7%Q6vw9&%4ea#g$vSjqhKc?>ohH)HE}+gxUJi!pu{O^N@Q)k<7Cm=yX=hn zK^&oi#DPlf2~{92h!g6W3lb-gDlQ0t5P}PE=#c}epqwcG*;#wnE>2t!2hgna%VuY1 z-kbNIH!~Y$Rz^-1=I8-)gy7mm$h$ku)x*YnzrZ1`PH*~ zx>nD4zR36<7nVC5Fy9LV&se^nDSI^$c&^I=o{7p!ahVycbhW5oXa%$aJtB{xYd&>YG+TE1(t73TOqi0$KsBfL1^&pcT*xXa%$a|3L*Tn~TmUQJ2p9z4K1@g*RKfG$x1Fd5-UJRf1&)EEU06&3G z!3W?SunL|7d%-Ap65M)_kRQM|;0ibZOmOo7LVgCro7BaM`r=bK9EfRb6}XN&=~rc^dD%dW>+ z_}J`A^x|ybh|r?6aynIIoLj4`nks_vQR}u zr^-xAq?HMQCmgJ*`l;mslZ&7t3(~26d$_+k+S5@%LWUNf0hUQ1^!4E_You33C-fZ85y$Y>hzutlR& zm~AZNPt4}$8}s>@!V87`iDF}6@!-+?OtCRLUCcL%g}HoVp|FG>#p&YWLSr_6yl^r< ze~QlLi_?YU3$1?0Y(T;tl1btDtd=&U%fC#Yr>S9~_Z?XiwnVlul{R;fh)zYhm0g&; zqa>Cyf}N8G@}dbr!%j`TQpbtDDC6T-k0 z8q=<8P^)Is-AR)stNP;nWY`2tOd{^k+17r#I7wP+`sj!(UQ0G}+?x6mxzvzt2^KCT zQGb~mtxFVF(q((+V;cz*Lq@xjtxDs@5S7bSsm9KUl5L%joFP)*3alzWoeldTyk)cI zxRcZiZhz4x>t>OvUZ_#06h68Rk9^k>AoLt|Ec_9Bh=1!zk@2Rg!i&QEyP67bQ$?}3 zZlR~tyo;jh)xW8!@RXt*YW6;3H&Z*>?BpzkO3fJ>Z_X4~XZGG%UZDF4bvlCRG~L{% zxf!nBQe4?Jd2e-2CYvm1nhi|~>@kfTO{o<|zD_Z)4Z@gdY)E8wFC7t+rbmcu}#Fm1k@ z%Ron%iG1HINVM)PMCnEiaa({GlJ4QPjCTnxw%J2yp{Hi#QAVq=4HF?A_Eu6Y%bv>J zSM4eUPtDaSnUXm}u72vf)e(;6;%f{AmJk7UXUk>*&8p8IQg$uQqwifl(>hpB$LX~1 NyH42>j#rDz$)5pj>QDdx literal 0 HcmV?d00001 diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 0000000..98ccf6f --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,3 @@ +class ApplicationController < ActionController::Base + include Pagy::Backend +end diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/controllers/deliveries_controller.rb b/app/controllers/deliveries_controller.rb new file mode 100644 index 0000000..8c5fd8d --- /dev/null +++ b/app/controllers/deliveries_controller.rb @@ -0,0 +1,70 @@ +class DeliveriesController < ApplicationController + before_action :set_delivery, only: %i[ show edit update destroy ] + + # GET /deliveries or /deliveries.json + def index + @deliveries = Delivery.all + end + + # GET /deliveries/1 or /deliveries/1.json + def show + end + + # GET /deliveries/new + def new + @delivery = Delivery.new + end + + # GET /deliveries/1/edit + def edit + end + + # POST /deliveries or /deliveries.json + def create + @delivery = Delivery.new(delivery_params) + + respond_to do |format| + if @delivery.save + format.html { redirect_to delivery_url(@delivery), notice: "Delivery was successfully created." } + format.json { render :show, status: :created, location: @delivery } + else + format.html { render :new, status: :unprocessable_entity } + format.json { render json: @delivery.errors, status: :unprocessable_entity } + end + end + end + + # PATCH/PUT /deliveries/1 or /deliveries/1.json + def update + respond_to do |format| + if @delivery.update(delivery_params) + format.html { redirect_to delivery_url(@delivery), notice: "Delivery was successfully updated." } + format.json { render :show, status: :ok, location: @delivery } + else + format.html { render :edit, status: :unprocessable_entity } + format.json { render json: @delivery.errors, status: :unprocessable_entity } + end + end + end + + # DELETE /deliveries/1 or /deliveries/1.json + def destroy + @delivery.destroy + + respond_to do |format| + format.html { redirect_to deliveries_url, notice: "Delivery was successfully destroyed." } + format.json { head :no_content } + end + end + + private + # Use callbacks to share common setup or constraints between actions. + def set_delivery + @delivery = Delivery.find(params[:id]) + end + + # Only allow a list of trusted parameters through. + def delivery_params + params.require(:delivery).permit(:message_id, :status, :code, :output, :details, :sent_with_ssl, :log_id, :timestamp, :time) + end +end diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb new file mode 100644 index 0000000..95f2992 --- /dev/null +++ b/app/controllers/home_controller.rb @@ -0,0 +1,4 @@ +class HomeController < ApplicationController + def index + end +end diff --git a/app/controllers/messages_controller.rb b/app/controllers/messages_controller.rb new file mode 100644 index 0000000..c8c0700 --- /dev/null +++ b/app/controllers/messages_controller.rb @@ -0,0 +1,104 @@ +class MessagesController < ApplicationController + before_action :set_message, only: %i[ show ] + + # GET /messages or /messages.json + def index + @search_term="" + all_mail = Message.select("messages.id,messages.message_id,messages.token,messages.mail_from,messages.rcpt_to,messages.subject,messages.timestamp,messages.last_delivery_attempt,messages.size,messages.status,deliveries.details").joins("INNER JOIN deliveries ON messages.id=deliveries.message_id") + from = params[:mail_from] + to = params[:rcpt_to] + if !params[:date_to].nil? + date_to = Time.parse(params[:date_to]).to_i.to_s if !params[:date_to].empty? + to_next_day = (Time.parse(params[:date_to]).to_i + 86400).to_s if !params[:date_to].empty? + end + if !params[:date_to].nil? + date_from = Time.parse(params[:date_from]).to_i.to_s if !params[:date_from].empty? + from_next_day = (Time.parse(params[:date_from]).to_i + 86400).to_s if !params[:date_from].empty? + end + status = params[:status] + from ||= '' + to ||= '' + + if !from.blank? + @search_term << 'messages.mail_from="'+from+'"' + end + + if !to.blank? + if !@search_term.empty? + @search_term << " AND " + end + @search_term << 'messages.rcpt_to="'+to+'"' + puts "search term is #{@search_term}" + end + + if !date_to.nil? + if !@search_term.empty? + @search_term << " AND " + end + if params[:date_from].nil? or params[:date_from].empty? + @search_term << 'messages.timestamp>'+date_to+" AND messages.timestamp<"+ to_next_day + else + @search_term << 'messages.timestamp<='+date_to + end + end + + if !date_from.nil? + if !@search_term.empty? + @search_term << " AND " + end + if params[:date_to].nil? or params[:date_to].empty? + @search_term << 'messages.timestamp>'+date_from+" AND messages.timestamp<"+ from_next_day + else + @search_term << 'messages.timestamp>='+date_from + end + end + + if params[:status].blank? + params[:status] = 'All' + end + + if params[:status] != "All" and @search_term.blank? + @search_term << 'messages.status="'+params[:status]+'"' + elsif status != "All" and !@search_term.blank? + @search_term << ' AND messages.status="'+params[:status]+'"' + end + + if @search_term.blank? + mail = all_mail + else + mail = all_mail.where("#{@search_term}") + end + @@results = mail + @pagy, @messages = pagy(mail.order(id: :desc)) + end + + # GET /messages/1 or /messages/1.json + def show + end + + def export + if File.file?("#{Rails.root}/mail_delivery_report.csv") + File.delete("#{Rails.root}/mail_delivery_report.csv") + end + + file = File.open("mail_delivery_report.csv", "a") + file.write("ID|SENDER|RECIPIENT|SUBJECT|DATE|TIME|SIZE|STATUS|DELIVERY DETAILS\n") + @@results.each do |mail| + file.write("#{mail.id}|#{mail.mail_from}|#{mail.rcpt_to}|#{mail.subject}|#{Time.at(mail.timestamp).strftime('%d-%m-%Y')}|#{Time.at(mail.timestamp).strftime('%H:%M:%S')}|#{ mail.size.to_f >= 1048576 ? "#{(mail.size.to_d/1048576).round(2)} MB" : "#{(mail.size.to_d/1024).round(2)} KB" }|#{mail.status}|#{mail.details}\n") + end + file.close + send_file("#{Rails.root}/mail_delivery_report.csv") + end + + # POST /messages or /messages.json + private + # Use callbacks to share common setup or constraints between actions. + def set_message + @message = Message.find(params[:id]) + end + + # Only allow a list of trusted parameters through. + def message_params + params.require(:message).permit(:token, :scope, :rcpt_to, :mail_from, :subject, :message_id, :timestamp, :route_id, :domain_id, :credential_id, :status, :held, :size, :last_delivery_attempt, :raw_table, :raw_body_id, :raw_headers_id, :inspected, :spam, :spam_score, :threat, :threat_details, :bounce, :bounce_for_id, :tag, :loaded, :clicked, :received_with_ssl, :hold_expiry, :tracked_links, :tracked_images, :parsed, :endpoint_id, :endpoint_type) + end +end diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb new file mode 100644 index 0000000..347adaa --- /dev/null +++ b/app/controllers/reports_controller.rb @@ -0,0 +1,88 @@ +class ReportsController < ApplicationController + attr_reader :report + def initialize + @search_term="" + end + + def search + from = params[:mail_from] + to = params[:rcpt_to] + if !params[:date_to].nil? + date_to = Time.parse(params[:date_to]).to_i.to_s if !params[:date_to].empty? + to_next_day = (Time.parse(params[:date_to]).to_i + 86400).to_s if !params[:date_to].empty? + end + if !params[:date_to].nil? + date_from = Time.parse(params[:date_from]).to_i.to_s if !params[:date_from].empty? + from_next_day = (Time.parse(params[:date_from]).to_i + 86400).to_s if !params[:date_from].empty? + end + status = params[:status] + from ||= '' + to ||= '' + + if !from.empty? + @search_term << 'messages.mail_from="'+from+'"' + end + + if !to.empty? + if !@search_term.empty? + @search_term << " AND " + end + @search_term << 'messages.rcpt_to="'+to+'"' + puts "search term is #{@search_term}" + end + + if !date_to.nil? + if !@search_term.empty? + @search_term << " AND " + end + if params[:date_from].nil? or params[:date_from].empty? + @search_term << 'messages.timestamp>'+date_to+" AND messages.timestamp<"+ to_next_day + else + @search_term << 'messages.timestamp<='+date_to + end + end + + if !date_from.nil? + if !@search_term.empty? + @search_term << " AND " + end + if params[:date_to].nil? or params[:date_to].empty? + @search_term << 'messages.timestamp>'+date_from+" AND messages.timestamp<"+ from_next_day + else + @search_term << 'messages.timestamp>='+date_from + end + end + + if status != "All" and @search_term.empty? + @search_term << 'messages.status="'+status+'"' + elsif status != "All" and !@search_term.empty? + @search_term << ' AND messages.status="'+status+'"' + end + puts "search term is #{@search_term}" + + @@report_search = Report.find(@search_term) + p @query_report + @query_report = Report.find(@search_term) + end + + def export + if File.file?("#{Rails.root}/mail_delivery_report.csv") + File.delete("#{Rails.root}/mail_delivery_report.csv") + end + + file = File.open("mail_delivery_report.csv", "a") + file.write("ID|SENDER|RECIPIENT|SUBJECT|DATE|TIME|SIZE|STATUS|DELIVERY DETAILS\n") + @@report_search.each(:as => :hash) do |mail| + file.write("#{mail['message_id']}|#{mail['mail_from']}|#{mail['rcpt_to']}|#{mail['subject']}|#{Time.at(mail['timestamp']).strftime('%d-%m-%Y')}|#{Time.at(mail['timestamp']).strftime('%H:%M:%S')}|#{ mail['size'].to_f >= 1048576 ? "#{(mail['size'].to_d/1048576).round(2)} MB" : "#{(mail['size'].to_d/1024).round(2)} KB" }|#{mail['status']}|#{mail['details']}\n") + end + file.close + send_file("#{Rails.root}/mail_delivery_report.csv") + end + + + def index + @mails = Report.all +# @pagy, @record = pagy(Report.all) + end + +end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 0000000..ed6a048 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,3 @@ +module ApplicationHelper + include Pagy::Frontend +end diff --git a/app/helpers/deliveries_helper.rb b/app/helpers/deliveries_helper.rb new file mode 100644 index 0000000..95612e6 --- /dev/null +++ b/app/helpers/deliveries_helper.rb @@ -0,0 +1,2 @@ +module DeliveriesHelper +end diff --git a/app/helpers/messages_helper.rb b/app/helpers/messages_helper.rb new file mode 100644 index 0000000..f1bca9f --- /dev/null +++ b/app/helpers/messages_helper.rb @@ -0,0 +1,2 @@ +module MessagesHelper +end diff --git a/app/helpers/reports_helper.rb b/app/helpers/reports_helper.rb new file mode 100644 index 0000000..cae2f09 --- /dev/null +++ b/app/helpers/reports_helper.rb @@ -0,0 +1,2 @@ +module ReportsHelper +end diff --git a/app/javascript/.application.js.swp b/app/javascript/.application.js.swp new file mode 100644 index 0000000000000000000000000000000000000000..5e49263f3411b673f381810ce428e9c43dad54da GIT binary patch literal 12288 zcmeI&&q~8E90%}BJo=BR_c-w)teJXHHwD3yhg}rCr(L#Xv`hRooqExe&)_@x9=?W{ zZruj5Av+Ggfsp2x^w;DAJ(MP_J=`?;c~E1%Y%%uLIPL7pHTM3=7#ZX8@LxqHrqh*8 zspC6E14Z-Zzvc;rHK~(vm6SE)QX#DsJvoqRMB2K%8|z3qZTdkkotFu52tZ&Vfy}k5 zXY1_b_-Od5?^pKtcKLpx6qpPF2tWV=5P$##AOHafEVqEOCHCgGuu^PewP;Jf+M`mr-b{9=(!^DBEX z8S&y_iL_kzxzFVX#VF`w0fhm-RkFnsL#ocZ&e^msL`S=B76y??#4z*pj?t6Y4?lN{ AYXATM literal 0 HcmV?d00001 diff --git a/app/javascript/application.js b/app/javascript/application.js new file mode 100644 index 0000000..d16fcbe --- /dev/null +++ b/app/javascript/application.js @@ -0,0 +1,4 @@ +// Configure your import map in config/importmap.rb. Read more: https://github.com/rails/importmap-rails +import "@hotwired/turbo-rails" +import "controllers" +import * as bootstrap from "bootstrap" diff --git a/app/javascript/controllers/application.js b/app/javascript/controllers/application.js new file mode 100644 index 0000000..1213e85 --- /dev/null +++ b/app/javascript/controllers/application.js @@ -0,0 +1,9 @@ +import { Application } from "@hotwired/stimulus" + +const application = Application.start() + +// Configure Stimulus development experience +application.debug = false +window.Stimulus = application + +export { application } diff --git a/app/javascript/controllers/hello_controller.js b/app/javascript/controllers/hello_controller.js new file mode 100644 index 0000000..5975c07 --- /dev/null +++ b/app/javascript/controllers/hello_controller.js @@ -0,0 +1,7 @@ +import { Controller } from "@hotwired/stimulus" + +export default class extends Controller { + connect() { + this.element.textContent = "Hello World!" + } +} diff --git a/app/javascript/controllers/index.js b/app/javascript/controllers/index.js new file mode 100644 index 0000000..54ad4ca --- /dev/null +++ b/app/javascript/controllers/index.js @@ -0,0 +1,11 @@ +// Import and register all your controllers from the importmap under controllers/* + +import { application } from "controllers/application" + +// Eager load all controllers defined in the import map under controllers/**/*_controller +import { eagerLoadControllersFrom } from "@hotwired/stimulus-loading" +eagerLoadControllersFrom("controllers", application) + +// Lazy load controllers as they appear in the DOM (remember not to preload controllers in import map!) +// import { lazyLoadControllersFrom } from "@hotwired/stimulus-loading" +// lazyLoadControllersFrom("controllers", application) diff --git a/app/javascript/reports.js b/app/javascript/reports.js new file mode 100644 index 0000000..b90537a --- /dev/null +++ b/app/javascript/reports.js @@ -0,0 +1,2 @@ + +//= require semantic-ui diff --git a/app/jobs/application_job.rb b/app/jobs/application_job.rb new file mode 100644 index 0000000..d394c3d --- /dev/null +++ b/app/jobs/application_job.rb @@ -0,0 +1,7 @@ +class ApplicationJob < ActiveJob::Base + # Automatically retry jobs that encountered a deadlock + # retry_on ActiveRecord::Deadlocked + + # Most jobs are safe to ignore if the underlying records are no longer available + # discard_on ActiveJob::DeserializationError +end diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb new file mode 100644 index 0000000..3c34c81 --- /dev/null +++ b/app/mailers/application_mailer.rb @@ -0,0 +1,4 @@ +class ApplicationMailer < ActionMailer::Base + default from: "from@example.com" + layout "mailer" +end diff --git a/app/models/.report.rb.swo b/app/models/.report.rb.swo new file mode 100644 index 0000000000000000000000000000000000000000..3aaf046cf8c99f6b4a8260e11367a1f42fae71ed GIT binary patch literal 12288 zcmeI2&2G~`5XZN0KmrN~4ji~llS5L}I&D!Uh$ys8Q!r{0F9*9sb+lamTfV>pT}xZ)&OWxK?I1v@d$KPXZq$iyD>K#zv|h{1YEiN=y-F{T||Hg5CI}U1c(3; zAOb{y2%Ja)DjZ`kvGY?&_g9l~?6)zwq=5(!0U|&IhyW2F0z`la5CI}U1c(3;IDrJX z%~q5rs5;6* zEuqe$e&YP!lXX7pwdf!MM1Tko0U|&IhyW2F0z}~d5)i)401iF@BB8pGk3+l@7ZW-Z zpThzywgcZccDlHwH=oJwElRXIrH$TZR@`n}r zsefPV$^EibhU{L_ffA9o4>fD0Y{Bw6ctT3PC8Xiluu`s<;*PKbR|;%IAEP}D8PYBQ z9Bm_Zsn;-s7pmUfI1|E9ImQN_JC1MX58W2~AF4)}nRM z5A@{GtAB?6AA$#aQSj*7%_iGQs?w9f8~A2+-+MFfy-#)zA=90IWY*x8G0$*ZX6*CK zxBg+~kbNnXnDl)eng29gZabE6>=#1rZ4VYs4KMnEE(X5R+$l&A_)@DP4}zlW<7!nL znhe=Jbpvt`0U~fV0-^2~Zcel7iwp6qp3Pi?t5+VLZ7*6y1c(3;AOb{y2oM1xKm>@u ze@Q?GQ|u*HelDqgCYh&xnUh;)_y|NkHT{y)0J*jLmi)JN3!i;TTOZB8@x6jerLQ9p3q5$Zka9qKLW4eB*&fLcZs zP&rhTV+lor2oM1xKm>>Y5g-CYfCvzQf0cj`p2Yx$p8!(mP+!v6 zvkKY$qyjCZdl2WvJdP5WE*g_7KT&p6D}Wsp8}}0JWC%CVdw0+??xJsdR{mH>+|h}R z5KpF6-KbXDux7T}W*skFp%mX1%CN1u@wN7!3opHmPFHvO(sxsn>;<}`{nVhs?laNT zsX^Pgo#t+knjEflXLL-v!?li@NZlB%Lp7HK*jSS#G^SRt-fYyym4aEXSDSFZVb-zv z_{=xPLZd#8z+TF!$4J`h*cLRJYq)gv$?;HFtF|f`B$+)8R)l7ZVAT1j;k3`m?G3v+ z*+P^peo*lnsqLvy>^W-c=4w&tJ| zJ?#_xkvaBAgF{HEw(ic)D6H(*SP-O!c-a&Fvsj{O9+)_^_$ literal 0 HcmV?d00001 diff --git a/app/models/application_record.rb b/app/models/application_record.rb new file mode 100644 index 0000000..b63caeb --- /dev/null +++ b/app/models/application_record.rb @@ -0,0 +1,3 @@ +class ApplicationRecord < ActiveRecord::Base + primary_abstract_class +end diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 0000000..e69de29 diff --git a/app/models/delivery.rb b/app/models/delivery.rb new file mode 100644 index 0000000..02e8059 --- /dev/null +++ b/app/models/delivery.rb @@ -0,0 +1,4 @@ +class Delivery < ApplicationRecord + belongs_to :message + belongs_to :log +end diff --git a/app/models/message.rb b/app/models/message.rb new file mode 100644 index 0000000..bf6f881 --- /dev/null +++ b/app/models/message.rb @@ -0,0 +1,10 @@ +class Message < ApplicationRecord + belongs_to :message + belongs_to :route + belongs_to :domain + belongs_to :credential + belongs_to :raw_body + belongs_to :raw_headers + belongs_to :bounce_for + belongs_to :endpoint +end diff --git a/app/models/report.rb b/app/models/report.rb new file mode 100644 index 0000000..706ccbd --- /dev/null +++ b/app/models/report.rb @@ -0,0 +1,23 @@ +require 'mysql2' + +class Report < ActiveRecord::Base + + @conn = Mysql2::Client.new( :host => POSTAL_CONFIG['host'], :port => POSTAL_CONFIG['port'], :username => POSTAL_CONFIG['username'], :password => POSTAL_CONFIG['password'], :database => POSTAL_CONFIG['database']) + #@search_query = "SELECT id,mail_from,rcpt_to,subject,timestamp,last_delivery_attempt,status FROM messages" + @search_query = "SELECT DISTINCT messages.id,messages.message_id,messages.token,messages.mail_from,messages.rcpt_to,messages.subject,messages.timestamp,messages.last_delivery_attempt,messages.size,messages.status,deliveries.details FROM messages INNER JOIN deliveries ON messages.id=deliveries.message_id" + + def self.find(search_term) + p @search_query + if search_term.empty? + reports = @conn.query(@search_query) + else + reports = @conn.query("#{@search_query} WHERE #{search_term} ORDER BY messages.id DESC") + end + return reports + end + + def self.all() + reports = @conn.query("#{@search_query}") + return reports + end +end diff --git a/app/views/deliveries/_delivery.html.erb b/app/views/deliveries/_delivery.html.erb new file mode 100644 index 0000000..3b498ed --- /dev/null +++ b/app/views/deliveries/_delivery.html.erb @@ -0,0 +1,47 @@ +
+

+ Message: + <%= delivery.message_id %> +

+ +

+ Status: + <%= delivery.status %> +

+ +

+ Code: + <%= delivery.code %> +

+ +

+ Output: + <%= delivery.output %> +

+ +

+ Details: + <%= delivery.details %> +

+ +

+ Sent with ssl: + <%= delivery.sent_with_ssl %> +

+ +

+ Log: + <%= delivery.log_id %> +

+ +

+ Timestamp: + <%= delivery.timestamp %> +

+ +

+ Time: + <%= delivery.time %> +

+ +
diff --git a/app/views/deliveries/_delivery.json.jbuilder b/app/views/deliveries/_delivery.json.jbuilder new file mode 100644 index 0000000..0864441 --- /dev/null +++ b/app/views/deliveries/_delivery.json.jbuilder @@ -0,0 +1,2 @@ +json.extract! delivery, :id, :message_id, :status, :code, :output, :details, :sent_with_ssl, :log_id, :timestamp, :time, :created_at, :updated_at +json.url delivery_url(delivery, format: :json) diff --git a/app/views/deliveries/_form.html.erb b/app/views/deliveries/_form.html.erb new file mode 100644 index 0000000..cbd3f7a --- /dev/null +++ b/app/views/deliveries/_form.html.erb @@ -0,0 +1,62 @@ +<%= form_with(model: delivery) do |form| %> + <% if delivery.errors.any? %> +
+

<%= pluralize(delivery.errors.count, "error") %> prohibited this delivery from being saved:

+ +
    + <% delivery.errors.each do |error| %> +
  • <%= error.full_message %>
  • + <% end %> +
+
+ <% end %> + +
+ <%= form.label :message_id, style: "display: block" %> + <%= form.text_field :message_id %> +
+ +
+ <%= form.label :status, style: "display: block" %> + <%= form.text_field :status %> +
+ +
+ <%= form.label :code, style: "display: block" %> + <%= form.number_field :code %> +
+ +
+ <%= form.label :output, style: "display: block" %> + <%= form.text_field :output %> +
+ +
+ <%= form.label :details, style: "display: block" %> + <%= form.text_field :details %> +
+ +
+ <%= form.label :sent_with_ssl, style: "display: block" %> + <%= form.check_box :sent_with_ssl %> +
+ +
+ <%= form.label :log_id, style: "display: block" %> + <%= form.text_field :log_id %> +
+ +
+ <%= form.label :timestamp, style: "display: block" %> + <%= form.text_field :timestamp %> +
+ +
+ <%= form.label :time, style: "display: block" %> + <%= form.text_field :time %> +
+ +
+ <%= form.submit %> +
+<% end %> diff --git a/app/views/deliveries/edit.html.erb b/app/views/deliveries/edit.html.erb new file mode 100644 index 0000000..86d4dd1 --- /dev/null +++ b/app/views/deliveries/edit.html.erb @@ -0,0 +1,10 @@ +

Editing delivery

+ +<%= render "form", delivery: @delivery %> + +
+ +
+ <%= link_to "Show this delivery", @delivery %> | + <%= link_to "Back to deliveries", deliveries_path %> +
diff --git a/app/views/deliveries/index.html.erb b/app/views/deliveries/index.html.erb new file mode 100644 index 0000000..76197e2 --- /dev/null +++ b/app/views/deliveries/index.html.erb @@ -0,0 +1,14 @@ +

<%= notice %>

+ +

Deliveries

+ +
+ <% @deliveries.each do |delivery| %> + <%= render delivery %> +

+ <%= link_to "Show this delivery", delivery %> +

+ <% end %> +
+ +<%= link_to "New delivery", new_delivery_path %> diff --git a/app/views/deliveries/index.json.jbuilder b/app/views/deliveries/index.json.jbuilder new file mode 100644 index 0000000..e4167c4 --- /dev/null +++ b/app/views/deliveries/index.json.jbuilder @@ -0,0 +1 @@ +json.array! @deliveries, partial: "deliveries/delivery", as: :delivery diff --git a/app/views/deliveries/new.html.erb b/app/views/deliveries/new.html.erb new file mode 100644 index 0000000..f1d8faa --- /dev/null +++ b/app/views/deliveries/new.html.erb @@ -0,0 +1,9 @@ +

New delivery

+ +<%= render "form", delivery: @delivery %> + +
+ +
+ <%= link_to "Back to deliveries", deliveries_path %> +
diff --git a/app/views/deliveries/show.html.erb b/app/views/deliveries/show.html.erb new file mode 100644 index 0000000..551f350 --- /dev/null +++ b/app/views/deliveries/show.html.erb @@ -0,0 +1,10 @@ +

<%= notice %>

+ +<%= render @delivery %> + +
+ <%= link_to "Edit this delivery", edit_delivery_path(@delivery) %> | + <%= link_to "Back to deliveries", deliveries_path %> + + <%= button_to "Destroy this delivery", @delivery, method: :delete %> +
diff --git a/app/views/deliveries/show.json.jbuilder b/app/views/deliveries/show.json.jbuilder new file mode 100644 index 0000000..3ed97d0 --- /dev/null +++ b/app/views/deliveries/show.json.jbuilder @@ -0,0 +1 @@ +json.partial! "deliveries/delivery", delivery: @delivery diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb new file mode 100644 index 0000000..e69de29 diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 0000000..4628330 --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,44 @@ + + + + Postal Mail Reports + + <%= csrf_meta_tags %> + <%= csp_meta_tag %> + + <%= stylesheet_link_tag "application" %> + <%= javascript_importmap_tags %> + + + + + + <%= yield %> + + diff --git a/app/views/messages/.index.html.erb.swp b/app/views/messages/.index.html.erb.swp new file mode 100644 index 0000000000000000000000000000000000000000..9f943bd5d2377c28413fc9d5b1cd3dfefab030d2 GIT binary patch literal 12288 zcmeI2zi-<{6vrVM4Ww+xaUDfcjKC;T6z)*<=OmnXCy6e}BaSEk z$j>POvKJk@XUmYkp+klg9onH&w~pB|_e+XW6{AjUYl(qJ;7jt3@7_Cp?(PwSuCw^< z=bQYxzsPW0WbE1Lo4qr?on?<+FlMy2dG)&v5$j%GY>F^yDYLE2LG}-Fht*VPRz#jr zsWvvNiZrcmhiWIQ#wyE1Pi56Gk!siP+c@%-=^W&Z>WKgmI5dHQ?RsnH*wy8wVyVwL zSNO*teRJsMWJm;v01+SpM1Tko0U|&Ih``AwVAE6VAztHy@>S-_>#2R$vPc&qKm>>Y z5g-CYfCvx)B0vO)01+SpMBoGx5R$Ryvy6Rz8lA`g|D)gke_mkh59lc*p(b=0x(K~I z&)5^_GiV0-^&Df5p$%vinuk7tUY%v^Z|G;}OK1lAklC=i=j9JnV!Z$-WgN5` zM&x{aliym=iByyE;y|&Z<=&`>=Pp-?%wrA>@-vLgWEnM9^33i& zUs_yQyY}fSN6fjq3*#P@CbC*SulPm}61lKkxz9ImIlOkD`SQx7?H9M4 z<33rGK`Krw0A{**abe!QU2`{UZfm}R0XZI*!^M%F8++~#Q^Xmw9dx!-V2|D3kslMJ zwr%y)eq!uFZg-82|Ho5(a#~~Jub06yUx}d4rRMj_ntNznE{OUY3kHMIS7Ktm?q4f) z+vi!JQ>>IgN6uSUO{-Wbxyw + <% if message.errors.any? %> +
+

<%= pluralize(message.errors.count, "error") %> prohibited this message from being saved:

+ +
    + <% message.errors.each do |error| %> +
  • <%= error.full_message %>
  • + <% end %> +
+
+ <% end %> + +
+ <%= form.label :token, style: "display: block" %> + <%= form.text_field :token %> +
+ +
+ <%= form.label :scope, style: "display: block" %> + <%= form.text_field :scope %> +
+ +
+ <%= form.label :rcpt_to, style: "display: block" %> + <%= form.text_field :rcpt_to %> +
+ +
+ <%= form.label :mail_from, style: "display: block" %> + <%= form.text_field :mail_from %> +
+ +
+ <%= form.label :subject, style: "display: block" %> + <%= form.text_field :subject %> +
+ +
+ <%= form.label :message_id, style: "display: block" %> + <%= form.text_field :message_id %> +
+ +
+ <%= form.label :timestamp, style: "display: block" %> + <%= form.text_field :timestamp %> +
+ +
+ <%= form.label :route_id, style: "display: block" %> + <%= form.text_field :route_id %> +
+ +
+ <%= form.label :domain_id, style: "display: block" %> + <%= form.text_field :domain_id %> +
+ +
+ <%= form.label :credential_id, style: "display: block" %> + <%= form.text_field :credential_id %> +
+ +
+ <%= form.label :status, style: "display: block" %> + <%= form.text_field :status %> +
+ +
+ <%= form.label :held, style: "display: block" %> + <%= form.check_box :held %> +
+ +
+ <%= form.label :size, style: "display: block" %> + <%= form.text_field :size %> +
+ +
+ <%= form.label :last_delivery_attempt, style: "display: block" %> + <%= form.text_field :last_delivery_attempt %> +
+ +
+ <%= form.label :raw_table, style: "display: block" %> + <%= form.text_field :raw_table %> +
+ +
+ <%= form.label :raw_body_id, style: "display: block" %> + <%= form.text_field :raw_body_id %> +
+ +
+ <%= form.label :raw_headers_id, style: "display: block" %> + <%= form.text_field :raw_headers_id %> +
+ +
+ <%= form.label :inspected, style: "display: block" %> + <%= form.check_box :inspected %> +
+ +
+ <%= form.label :spam, style: "display: block" %> + <%= form.check_box :spam %> +
+ +
+ <%= form.label :spam_score, style: "display: block" %> + <%= form.text_field :spam_score %> +
+ +
+ <%= form.label :threat, style: "display: block" %> + <%= form.check_box :threat %> +
+ +
+ <%= form.label :threat_details, style: "display: block" %> + <%= form.text_field :threat_details %> +
+ +
+ <%= form.label :bounce, style: "display: block" %> + <%= form.check_box :bounce %> +
+ +
+ <%= form.label :bounce_for_id, style: "display: block" %> + <%= form.text_field :bounce_for_id %> +
+ +
+ <%= form.label :tag, style: "display: block" %> + <%= form.text_field :tag %> +
+ +
+ <%= form.label :loaded, style: "display: block" %> + <%= form.text_field :loaded %> +
+ +
+ <%= form.label :clicked, style: "display: block" %> + <%= form.text_field :clicked %> +
+ +
+ <%= form.label :received_with_ssl, style: "display: block" %> + <%= form.check_box :received_with_ssl %> +
+ +
+ <%= form.label :hold_expiry, style: "display: block" %> + <%= form.text_field :hold_expiry %> +
+ +
+ <%= form.label :tracked_links, style: "display: block" %> + <%= form.number_field :tracked_links %> +
+ +
+ <%= form.label :tracked_images, style: "display: block" %> + <%= form.number_field :tracked_images %> +
+ +
+ <%= form.label :parsed, style: "display: block" %> + <%= form.number_field :parsed %> +
+ +
+ <%= form.label :endpoint_id, style: "display: block" %> + <%= form.text_field :endpoint_id %> +
+ +
+ <%= form.label :endpoint_type, style: "display: block" %> + <%= form.text_field :endpoint_type %> +
+ +
+ <%= form.submit %> +
+<% end %> diff --git a/app/views/messages/_message.html.erb b/app/views/messages/_message.html.erb new file mode 100644 index 0000000..bd90eb1 --- /dev/null +++ b/app/views/messages/_message.html.erb @@ -0,0 +1,15 @@ +
+
+ + + <%= message.mail_from %> + <%= message.rcpt_to %> + <%= message.subject %> + <%= Time.at(message.timestamp).strftime('%d-%m-%Y') %> + <%= Time.at(message.timestamp).strftime('%H:%M:%S') %> + <%= message.size.to_f >= 1048576 ? "#{(message.size.to_d/1048576).round(2)} MB" : "#{(message.size.to_d/1024).round(2)} KB"%> + <%= message.status == "Sent"? "Delivered": message.status %> + + +
+
diff --git a/app/views/messages/_message.json.jbuilder b/app/views/messages/_message.json.jbuilder new file mode 100644 index 0000000..c27ec98 --- /dev/null +++ b/app/views/messages/_message.json.jbuilder @@ -0,0 +1,2 @@ +json.extract! message, :id, :token, :scope, :rcpt_to, :mail_from, :subject, :message_id, :timestamp, :route_id, :domain_id, :credential_id, :status, :held, :size, :last_delivery_attempt, :raw_table, :raw_body_id, :raw_headers_id, :inspected, :spam, :spam_score, :threat, :threat_details, :bounce, :bounce_for_id, :tag, :loaded, :clicked, :received_with_ssl, :hold_expiry, :tracked_links, :tracked_images, :parsed, :endpoint_id, :endpoint_type, :created_at, :updated_at +json.url message_url(message, format: :json) diff --git a/app/views/messages/edit.html.erb b/app/views/messages/edit.html.erb new file mode 100644 index 0000000..9eccd81 --- /dev/null +++ b/app/views/messages/edit.html.erb @@ -0,0 +1,10 @@ +

Editing message

+ +<%= render "form", message: @message %> + +
+ +
+ <%= link_to "Show this message", @message %> | + <%= link_to "Back to messages", messages_path %> +
diff --git a/app/views/messages/index.html.erb b/app/views/messages/index.html.erb new file mode 100644 index 0000000..fa4fe12 --- /dev/null +++ b/app/views/messages/index.html.erb @@ -0,0 +1,35 @@ +

<%= notice %>

+ +
+
+ + + + + + + + + + + + + + <% @messages.each do |message| %> + + + + + + + + + + <% end %> + +
SenderRecipientSubjectDateTimeSizeStatus
<%= message.mail_from %><%= message.rcpt_to %><%= message.subject %><%= Time.at(message.timestamp).strftime('%d-%m-%Y') %><%= Time.at(message.timestamp).strftime('%H:%M:%S') %><%= message.size.to_f >= 1048576 ? "#{(message.size.to_d/1048576).round(2)} MB" : "#{(message.size.to_d/1024).round(2)} KB"%><%= message.status == "Sent"? "Delivered": message.status %>
+
+
+
+<%== pagy_bootstrap_nav(@pagy) if @pagy.pages > 1 %> +
diff --git a/app/views/messages/index.json.jbuilder b/app/views/messages/index.json.jbuilder new file mode 100644 index 0000000..27db314 --- /dev/null +++ b/app/views/messages/index.json.jbuilder @@ -0,0 +1 @@ +json.array! @messages, partial: "messages/message", as: :message diff --git a/app/views/messages/new.html.erb b/app/views/messages/new.html.erb new file mode 100644 index 0000000..502b573 --- /dev/null +++ b/app/views/messages/new.html.erb @@ -0,0 +1,9 @@ +

New message

+ +<%= render "form", message: @message %> + +
+ +
+ <%= link_to "Back to messages", messages_path %> +
diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb new file mode 100644 index 0000000..07ffc77 --- /dev/null +++ b/app/views/messages/show.html.erb @@ -0,0 +1,10 @@ +

<%= notice %>

+ +<%= render @message %> + +
+ <%= link_to "Edit this message", edit_message_path(@message) %> | + <%= link_to "Back to messages", messages_path %> + + <%= button_to "Destroy this message", @message, method: :delete %> +
diff --git a/app/views/messages/show.json.jbuilder b/app/views/messages/show.json.jbuilder new file mode 100644 index 0000000..a500e40 --- /dev/null +++ b/app/views/messages/show.json.jbuilder @@ -0,0 +1 @@ +json.partial! "messages/message", message: @message diff --git a/app/views/reports/.index.html.erb.swo b/app/views/reports/.index.html.erb.swo new file mode 100644 index 0000000000000000000000000000000000000000..83c403da4389f97d27e848203a04dd6120d9f187 GIT binary patch literal 12288 zcmeHNO^6&t7_Ee;i5eAi5D&s&3X3fSmlS`x;-gbBWysCOt z@2eiRI)`3*Zi$XH4l!I0G4{snk+n~r-@{)2nz2kNZIb`(;)z=8@g*M1WszMJ*>>e$ zGlb1l<(f+`6RFB{-sEZ8ycmo1yg5pV`;pja^mHN{BI|5NX49<#R)L)>FwkA^=zjLZ z{9Ix6gU;i0;Ncf{Uf-6q3RnfK0#*U5fK|XMU=^?mSOxBQ1$4TLUBxJNS0nMO`>rkb z>eb$?0#*U5fK|XMU=^?mSOu&CRspMkRlq7>6}STx;1Od#>;djV=kfpl(eMAi9%Sqn z;9KBx;6317;B6oT>Oc+n^#R7d0zL$;0xN(IJOcc_pRsR%kAPOhV1kM7_0Dtaf>@y$)uHAz=z>jw` zmH;OJ4|o*V3tYoEe*=C3%$UCi>}3_O3RngHX9@((D8ATcL_v*2Kcbp>#@i^le9^ok zMVV72bW}9Fp0KsLDP*posk8A?MVgMolZTHmKo^tH&2J7Y{ZFs28FXkmezW#l_2$XOIJ#$huNIeyjPX0cmuZ^RV8D%_QZ zR;yiVFVNhf*3l=A9454S@X|~zafaw|3gEE%~)&cXo=o*jY=FS4+IwD^s;pDLm+$ z7ooll>n96Sy{gr1U@|>h?Pe<3hAWsf1)TSksggGY4|_8{&uO7eevjupnx#n5Ws`du zlS0fG$XtP*G$5?g6MVuw|MXs@#PRRi; zO~+u?=5!2;Tu;fcT&~yYx^YH?aT+7UO-F+u8HsEw$HeNyB#$ktpx6f}lswN7kIkk) z#b2+ZGEgDRmTM%yrZOs)sdYL($aUNudZ9wt?rX0M-&EG3)SIs!y@+QQs0ffEq6Fy* z(Yq_vy2l4v73{D}+#NY4%|s5u6K3BUZ`3rzo7|u?&|39L4~-AX z7pJ|b*85WNh|Uxzj)P{I(RPa?#;ZB+3aa}&)G?|WcZv;jGP!7WY~wU7byb!$@AbHpG-loHCp?L_F5Fhc`EtPYdP&D%qb#j@l7(^Tx-47 O>!f=?M3-1lHT5^&+fAVW literal 0 HcmV?d00001 diff --git a/app/views/reports/.index.html.erb.swp b/app/views/reports/.index.html.erb.swp new file mode 100644 index 0000000000000000000000000000000000000000..d0f19d14ab83e82a748296e9ddf75d43b8afc350 GIT binary patch literal 12288 zcmeHN&5ImG9IXg`XH_Do7v*O!B3^;i20j1+paPVDUmjuXI`A2A6<7s4;7Q=u3C6w!J_p_cJYWX+>nLM?0zU!Q zfe>f{F7OQSc^Q=ksqxSz47 zfG;qvi$Dmh0IvXbU>bNDFysCP<9`o$7qFLAz$#!B_}>(0)OfVHz=#?p5?xLu^NhEC zasHzHmK1rUC}=6Zvs*Cq!MHr88-vylgKRJ+({pn*YC0M2dRC_SLZj3qbC&FUnG213 zT3&@5sLgLtn^L_aMbpt@Tf4rD*1H}BqN_zR?+h{Fu$k@|qGpqvWyGCR`eW{3ojlgv^sfdDj!`ssKRSSe7c&bUYAeJO<$p< z(++w2R-da6*M04@bLTx?i8`X{>!Md0Z;+uAmsh8&sZQFaV5(d?>y?(g(sFrvjJY^i zOWZAW+|t`)wNxnFYh4h5K7{p?1hHPz>JXSr&(_+B>g>bS7&Qf)_mcS}tqMN~r#wHU z<^p-4pN2F|T+w9{y^KjAW(;Jmh91oduudra5%>Jldkq~@8mJgv3Y2ti>#M>zJG7V^ z)HE>a&Huu-oOyFh4tQxi2D3KDV_5X{m<-GLdL6GD=R^?25mMZEG)R(MBzrkVRwpKT zXjwI~&4~i(rz!HW*{LY|*KMf;R7kV=8fjps>sL$E7G3D2I%@B@fkN8uYBx{clz&CB zJ6Alq+)p+rOOS$72jvP!joVUfxqeTpj2(7~+I`2wiAX_s%50{?jhcr1s4Eh}H_U7| zGU{%?-q;eLkM3D2L)XNBZht{5hheoM$c zR|Q*I=Ape!iagmwU?6Xhc=q(Gpc;h1b_VI`wp>Lzyfsr11kZ}v%fjK2wRYa2>=~ku z%2afx2p){Yq|@8bnDFqZ`ctyD6(Q;M5{YfLR!mxjIzoqvd*rPPoh4W^w@?I&wcRxg zDss z@4ebk&AF3DmuY`_j^Xz>WAB`JW^LK|kX`*^2aA=`rug4}9UjU+$ndO)*Vp>Meg zNLM12XfEAYL@L%vg-224Y$*CkWl)j`9{cTbTX$qx#LZ3FY=u?8DzIe*db;KA+sXDU z%%`rt+j)+jdh*1UyW56V0jq#jz$#!BunJfOtO8a6tH9l_fR47YOPI#?d@8Tx&utUW z{L?6}Sr(-~nS-b};tkJun{s|3CQq|L?~b z`wjRG_!M{#xB^@Te4qprfZrcw>|5Yt;1aM3c)-)ZpF0`54txT<0eHY1@Z%$lT?0M< zYQPh~HsG&^8M_L!fM7G^Kf@*#)3O`9)NN87%7$hm!skB1#m<~p}Z z;|nr$qT=doIni;;6wDM0N4&zaS6C^|PO%nS8!2!L9k=l2R3qgI_nN1LukXPAiTy}7 zw7LUK#l~;nZ-)w%}tPd9y#)bej@iMet8wN#~ZnnmgkAP8Kp{y50CS|4suE~{@ z25%8i2jvRahg(whUEb4*25B^GO?Y4wiv+|6O>P|>+ziOWu87goq%j$G&maIHX^kHN z94dL-*P-gBJ}l0ed&tIfO(*1Prt}dtT zOb#E^3W=CXUY0AVM5l@`OIa*Y(d5-)skowA`Y-~BDLTUAAbT$!5i$!?h$%xd$(uqB zxJpRPsozcxDYBp$f`PnY05$gCOf{?q+hK&+TXN-LePgD)5Tkq^z~8 z1E1(@XBV+dxtkyjsMw?3 z`}ZzYm#PQGDkP5*fzz9k>D!G;kLIIulqeYn)Rf#mbAYAJTO!>C0y@uX`B47=o13M> literal 0 HcmV?d00001 diff --git a/app/views/reports/export.html.erb b/app/views/reports/export.html.erb new file mode 100644 index 0000000..e69de29 diff --git a/app/views/reports/index.html.erb b/app/views/reports/index.html.erb new file mode 100644 index 0000000..12e80f4 --- /dev/null +++ b/app/views/reports/index.html.erb @@ -0,0 +1,58 @@ + +
+

Mail Delivery Report

+
+<%= form_with url: "/search", method: :get do |form| %> + <%= form.label :date_from, "From" %> + <%= form.date_field :date_from %> + <%= form.label :date_to, "To" %> + <%= form.date_field :date_to %> + <%= form.label :rcpt_to, "To" %> + <%= form.email_field :rcpt_to %> + <%= form.label :mail_from, "From" %> + <%= form.email_field :mail_from %> + <%= form.label :status, "Status" %> + <%= form.select :status , ['All', 'Sent','SoftFail', 'HardFail','Held'] , selected: "Sent" %> + <%= form.submit "search" %> +<% end %> +<%= link_to ''.html_safe ,:action => :export %> +
+ <% if @mails.present? %> +
+ + + + + + + + + + + + + + + <% @mails.each(:as => :hash ) do |mail| %> + + + + + + + + + + + <% end %> + +
SenderRecipientSubjectDateTimeSizeStatusDelivery Details
<%= mail['mail_from'] %><%= mail['rcpt_to'] %><%= mail['subject'] %><%= Time.at(mail['timestamp']).strftime('%d-%m-%Y') %><%= Time.at(mail['timestamp']).strftime('%H:%M:%S') %><%= mail['size'].to_f >= 1048576 ? "#{(mail['size'].to_d/1048576).round(2)} MB" : "#{(mail['size'].to_d/1024).round(2)} KB"%><%= mail['status'] == "Sent"? "Delivered": mail['status'] %><%= mail['details'] %>
+
+ <% end %> +
diff --git a/app/views/reports/search.html.erb b/app/views/reports/search.html.erb new file mode 100644 index 0000000..738d2dc --- /dev/null +++ b/app/views/reports/search.html.erb @@ -0,0 +1,67 @@ + +
+

Mail Delivery Report

+
+<%= form_with url: "/search", method: :get do |form| %> + <%= form.label :date_from, "From" %> + <%= form.date_field :date_from %> + <%= form.label :date_to, "To" %> + <%= form.date_field :date_to %> + <%= form.label :rcpt_to, "To" %> + <%= form.email_field :rcpt_to %> + <%= form.label :mail_from, "From" %> + <%= form.email_field :mail_from %> + <%= form.label :status, "Status" %> + <%= form.select :status , ['All', 'Sent','SoftFail', 'HardFail','Held'] %> + <%= form.submit "search" %> +<% end %> +<%= link_to "Download Report" ,:action => :export %> <%= "#{@query_report.count} mails" %> +
+ <% if @query_report.present? %> +
+ + + + + + + + + + + + + + + + <% @query_report.each(:as => :hash ) do |mail| %> + + + + + + + + + + + + <% end %> + +
Message IDSenderRecipientSubjectDateTimeSizeStatusDelivery Details
<%= mail['message_id'] %><%= mail['mail_from'] %><%= mail['rcpt_to'] %><%= mail['subject'] %><%= Time.at(mail['timestamp']).strftime('%d-%m-%Y') %><%= Time.at(mail['timestamp']).strftime('%H:%M:%S') %><%= mail['size'].to_f >= 1048576 ? "#{(mail['size'].to_d/1048576).round(2)} MB" : "#{(mail['size'].to_d/1024).round(2)} KB"%><%= mail['status'] == "Sent"? "Delivered": mail['status'] %><%= mail['details'] %>
+
+ <% else %> +
+ + Download Report +
+ <% end %> +
+ + diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 0000000..50da5fd --- /dev/null +++ b/bin/bundle @@ -0,0 +1,109 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +# +# This file was generated by Bundler. +# +# The application 'bundle' is installed as part of a gem, and +# this file is here to facilitate running it. +# + +require "rubygems" + +m = Module.new do + module_function + + def invoked_as_script? + File.expand_path($0) == File.expand_path(__FILE__) + end + + def env_var_version + ENV["BUNDLER_VERSION"] + end + + def cli_arg_version + return unless invoked_as_script? # don't want to hijack other binstubs + return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update` + bundler_version = nil + update_index = nil + ARGV.each_with_index do |a, i| + if update_index && update_index.succ == i && a.match?(Gem::Version::ANCHORED_VERSION_PATTERN) + bundler_version = a + end + next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/ + bundler_version = $1 + update_index = i + end + bundler_version + end + + def gemfile + gemfile = ENV["BUNDLE_GEMFILE"] + return gemfile if gemfile && !gemfile.empty? + + File.expand_path("../Gemfile", __dir__) + end + + def lockfile + lockfile = + case File.basename(gemfile) + when "gems.rb" then gemfile.sub(/\.rb$/, ".locked") + else "#{gemfile}.lock" + end + File.expand_path(lockfile) + end + + def lockfile_version + return unless File.file?(lockfile) + lockfile_contents = File.read(lockfile) + return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/ + Regexp.last_match(1) + end + + def bundler_requirement + @bundler_requirement ||= + env_var_version || + cli_arg_version || + bundler_requirement_for(lockfile_version) + end + + def bundler_requirement_for(version) + return "#{Gem::Requirement.default}.a" unless version + + bundler_gem_version = Gem::Version.new(version) + + bundler_gem_version.approximate_recommendation + end + + def load_bundler! + ENV["BUNDLE_GEMFILE"] ||= gemfile + + activate_bundler + end + + def activate_bundler + gem_error = activation_error_handling do + gem "bundler", bundler_requirement + end + return if gem_error.nil? + require_error = activation_error_handling do + require "bundler/version" + end + return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION)) + warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`" + exit 42 + end + + def activation_error_handling + yield + nil + rescue StandardError, LoadError => e + e + end +end + +m.load_bundler! + +if m.invoked_as_script? + load Gem.bin_path("bundler", "bundle") +end diff --git a/bin/importmap b/bin/importmap new file mode 100755 index 0000000..36502ab --- /dev/null +++ b/bin/importmap @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby + +require_relative "../config/application" +require "importmap/commands" diff --git a/bin/rails b/bin/rails new file mode 100755 index 0000000..efc0377 --- /dev/null +++ b/bin/rails @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +APP_PATH = File.expand_path("../config/application", __dir__) +require_relative "../config/boot" +require "rails/commands" diff --git a/bin/rake b/bin/rake new file mode 100755 index 0000000..4fbf10b --- /dev/null +++ b/bin/rake @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +require_relative "../config/boot" +require "rake" +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 0000000..ec47b79 --- /dev/null +++ b/bin/setup @@ -0,0 +1,33 @@ +#!/usr/bin/env ruby +require "fileutils" + +# path to your application root. +APP_ROOT = File.expand_path("..", __dir__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +FileUtils.chdir APP_ROOT do + # This script is a way to set up or update your development environment automatically. + # This script is idempotent, so that you can run it at any time and get an expectable outcome. + # Add necessary setup steps to this file. + + puts "== Installing dependencies ==" + system! "gem install bundler --conservative" + system("bundle check") || system!("bundle install") + + # puts "\n== Copying sample files ==" + # unless File.exist?("config/database.yml") + # FileUtils.cp "config/database.yml.sample", "config/database.yml" + # end + + puts "\n== Preparing database ==" + system! "bin/rails db:prepare" + + puts "\n== Removing old logs and tempfiles ==" + system! "bin/rails log:clear tmp:clear" + + puts "\n== Restarting application server ==" + system! "bin/rails restart" +end diff --git a/config.ru b/config.ru new file mode 100644 index 0000000..4a3c09a --- /dev/null +++ b/config.ru @@ -0,0 +1,6 @@ +# This file is used by Rack-based servers to start the application. + +require_relative "config/environment" + +run Rails.application +Rails.application.load_server diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 0000000..3a9e607 --- /dev/null +++ b/config/application.rb @@ -0,0 +1,22 @@ +require_relative "boot" + +require "rails/all" + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module PostalReports + class Application < Rails::Application + # Initialize configuration defaults for originally generated Rails version. + config.load_defaults 7.0 + + # Configuration for the application, engines, and railties goes here. + # + # These settings can be overridden in specific environments using the files + # in config/environments, which are processed later. + # + # config.time_zone = "Central Time (US & Canada)" + # config.eager_load_paths << Rails.root.join("extras") + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 0000000..988a5dd --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,4 @@ +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) + +require "bundler/setup" # Set up gems listed in the Gemfile. +require "bootsnap/setup" # Speed up boot time by caching expensive operations. diff --git a/config/cable.yml b/config/cable.yml new file mode 100644 index 0000000..a57b62c --- /dev/null +++ b/config/cable.yml @@ -0,0 +1,11 @@ +development: + adapter: redis + url: redis://localhost:6379/1 + +test: + adapter: test + +production: + adapter: redis + url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> + channel_prefix: postal_reports_production diff --git a/config/credentials.yml.enc b/config/credentials.yml.enc new file mode 100644 index 0000000..1fa6d4e --- /dev/null +++ b/config/credentials.yml.enc @@ -0,0 +1 @@ +c2btjUYWsrKiX4Wk+a83yWODEus/0ejcgQEsHDNwpmaxv54yu+Nlx7IcF0Fk1ot11xKrX4TBEHj+y73IJuWqo12OFt0qAPmIv8Wssv8J/W67Ft2i12T+5unYei6Zy73t1z3QMrZI9kUNhtDovCqwN05pClYmY/YcegJreSjJXDzOHj8Zpytv61R1QWHFWcBuXaU75oXyh1Wz3nYYo3ZrT5zh4pYu54W3DIC8CbEtpzMbXQj1xWG+zjlt2muXLs45epvrxu9Z5KUasIhKQWo7RAqiA6K3kbG3+IHCJG8eKUO4KtrR8ufNdbDlwGMAfVU0iGislWofeKkaDCDHPSA8xn0G3ytgv/X02CwRMOqeXzddJa3ZLZMkDpnAB7kf4yKXLZC9LFFSTcumIPxIM2SQGo24M/b9YBZA+Pln--deArg00D7FC9BK/U--KFc/wy5PIkzMjuTSIzLQdQ== \ No newline at end of file diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 0000000..0a417ce --- /dev/null +++ b/config/database.yml @@ -0,0 +1,29 @@ +# SQLite. Versions 3.8.0 and up are supported. +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem "sqlite3" +# +default: &default + adapter: mysql2 + pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> + timeout: 5000 + host: 127.0.0.1 + username: postal + password: postal + port: 3306 + +development: + <<: *default + database: postal1 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: postal1 + +production: + <<: *default + database: postal1 diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 0000000..cac5315 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require_relative "application" + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 0000000..8500f45 --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,70 @@ +require "active_support/core_ext/integer/time" + +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded any time + # it changes. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports. + config.consider_all_requests_local = true + + # Enable server timing + config.server_timing = true + + # Enable/disable caching. By default caching is disabled. + # Run rails dev:cache to toggle caching. + if Rails.root.join("tmp/caching-dev.txt").exist? + config.action_controller.perform_caching = true + config.action_controller.enable_fragment_cache_logging = true + + config.cache_store = :memory_store + config.public_file_server.headers = { + "Cache-Control" => "public, max-age=#{2.days.to_i}" + } + else + config.action_controller.perform_caching = false + + config.cache_store = :null_store + end + + # Store uploaded files on the local file system (see config/storage.yml for options). + config.active_storage.service = :local + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + config.action_mailer.perform_caching = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise exceptions for disallowed deprecations. + config.active_support.disallowed_deprecation = :raise + + # Tell Active Support which deprecation messages to disallow. + config.active_support.disallowed_deprecation_warnings = [] + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Highlight code that triggered database queries in logs. + config.active_record.verbose_query_logs = true + + # Suppress logger output for asset requests. + config.assets.quiet = true + + # Raises error for missing translations. + # config.i18n.raise_on_missing_translations = true + + # Annotate rendered view with file names. + # config.action_view.annotate_rendered_view_with_filenames = true + + # Uncomment if you wish to allow Action Cable access from any origin. + # config.action_cable.disable_request_forgery_protection = true +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 0000000..0ca3130 --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,93 @@ +require "active_support/core_ext/integer/time" + +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"] + # or in config/master.key. This key is used to decrypt credentials (and other encrypted files). + # config.require_master_key = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.public_file_server.enabled = ENV["RAILS_SERVE_STATIC_FILES"].present? + + # Compress CSS using a preprocessor. + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.asset_host = "http://assets.example.com" + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for Apache + # config.action_dispatch.x_sendfile_header = "X-Accel-Redirect" # for NGINX + + # Store uploaded files on the local file system (see config/storage.yml for options). + config.active_storage.service = :local + + # Mount Action Cable outside main process or domain. + # config.action_cable.mount_path = nil + # config.action_cable.url = "wss://example.com/cable" + # config.action_cable.allowed_request_origins = [ "http://example.com", /http:\/\/example.*/ ] + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Include generic and useful information about system operation, but avoid logging too much + # information to avoid inadvertent exposure of personally identifiable information (PII). + config.log_level = :info + + # Prepend all log lines with the following tags. + config.log_tags = [ :request_id ] + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Use a real queuing backend for Active Job (and separate queues per environment). + # config.active_job.queue_adapter = :resque + # config.active_job.queue_name_prefix = "postal_reports_production" + + config.action_mailer.perform_caching = false + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Don't log any deprecations. + config.active_support.report_deprecations = false + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Use a different logger for distributed setups. + # require "syslog/logger" + # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new "app-name") + + if ENV["RAILS_LOG_TO_STDOUT"].present? + logger = ActiveSupport::Logger.new(STDOUT) + logger.formatter = config.log_formatter + config.logger = ActiveSupport::TaggedLogging.new(logger) + end + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 0000000..6ea4d1e --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,60 @@ +require "active_support/core_ext/integer/time" + +# The test environment is used exclusively to run your application's +# test suite. You never need to work with it otherwise. Remember that +# your test database is "scratch space" for the test suite and is wiped +# and recreated between test runs. Don't rely on the data there! + +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Turn false under Spring and add config.action_view.cache_template_loading = true. + config.cache_classes = true + + # Eager loading loads your whole application. When running a single test locally, + # this probably isn't necessary. It's a good idea to do in a continuous integration + # system, or in some way before deploying your code. + config.eager_load = ENV["CI"].present? + + # Configure public file server for tests with Cache-Control for performance. + config.public_file_server.enabled = true + config.public_file_server.headers = { + "Cache-Control" => "public, max-age=#{1.hour.to_i}" + } + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + config.cache_store = :null_store + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Store uploaded files on the local file system in a temporary directory. + config.active_storage.service = :test + + config.action_mailer.perform_caching = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raise exceptions for disallowed deprecations. + config.active_support.disallowed_deprecation = :raise + + # Tell Active Support which deprecation messages to disallow. + config.active_support.disallowed_deprecation_warnings = [] + + # Raises error for missing translations. + # config.i18n.raise_on_missing_translations = true + + # Annotate rendered view with file names. + # config.action_view.annotate_rendered_view_with_filenames = true +end diff --git a/config/importmap.rb b/config/importmap.rb new file mode 100755 index 0000000..72dfd25 --- /dev/null +++ b/config/importmap.rb @@ -0,0 +1,12 @@ +# Pin npm packages by running ./bin/importmap + +pin "application" +# pin "bootstrap", to: "bootstrap.min.js", preload: true +pin "@popperjs/core", to: "popper.js", preload: true +pin "bootstrap", to: "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js", preload: true + + +pin "@hotwired/turbo-rails", to: "turbo.min.js" +pin "@hotwired/stimulus", to: "stimulus.min.js" +pin "@hotwired/stimulus-loading", to: "stimulus-loading.js" +pin_all_from "app/javascript/controllers", under: "controllers" diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 0000000..9d38a6d --- /dev/null +++ b/config/initializers/assets.rb @@ -0,0 +1,13 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = "1.0" + +# Add additional assets to the asset load path. +# Rails.application.config.assets.paths << Emoji.images_path + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in the app/assets +# folder are already added. +# Rails.application.config.assets.precompile += %w( admin.js admin.css ) +Rails.application.config.assets.precompile += %w(bootstrap.min.js popper.js) diff --git a/config/initializers/content_security_policy.rb b/config/initializers/content_security_policy.rb new file mode 100644 index 0000000..54f47cf --- /dev/null +++ b/config/initializers/content_security_policy.rb @@ -0,0 +1,25 @@ +# Be sure to restart your server when you modify this file. + +# Define an application-wide content security policy. +# See the Securing Rails Applications Guide for more information: +# https://guides.rubyonrails.org/security.html#content-security-policy-header + +# Rails.application.configure do +# config.content_security_policy do |policy| +# policy.default_src :self, :https +# policy.font_src :self, :https, :data +# policy.img_src :self, :https, :data +# policy.object_src :none +# policy.script_src :self, :https +# policy.style_src :self, :https +# # Specify URI for violation reports +# # policy.report_uri "/csp-violation-report-endpoint" +# end +# +# # Generate session nonces for permitted importmap and inline scripts +# config.content_security_policy_nonce_generator = ->(request) { request.session.id.to_s } +# config.content_security_policy_nonce_directives = %w(script-src) +# +# # Report violations without enforcing the policy. +# # config.content_security_policy_report_only = true +# end diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 0000000..adc6568 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,8 @@ +# Be sure to restart your server when you modify this file. + +# Configure parameters to be filtered from the log file. Use this to limit dissemination of +# sensitive information. See the ActiveSupport::ParameterFilter documentation for supported +# notations and behaviors. +Rails.application.config.filter_parameters += [ + :passw, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn +] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 0000000..3860f65 --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, "\\1en" +# inflect.singular /^(ox)en/i, "\\1" +# inflect.irregular "person", "people" +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym "RESTful" +# end diff --git a/config/initializers/pagy.rb b/config/initializers/pagy.rb new file mode 100644 index 0000000..7e3a4bd --- /dev/null +++ b/config/initializers/pagy.rb @@ -0,0 +1,220 @@ +# frozen_string_literal: true + +# Pagy initializer file (9.2.2) +# Customize only what you really need and notice that the core Pagy works also without any of the following lines. +# Should you just cherry pick part of this file, please maintain the require-order of the extras + + +# Pagy Variables +# See https://ddnexus.github.io/pagy/docs/api/pagy#variables +# You can set any pagy variable as a Pagy::DEFAULT. They can also be overridden per instance by just passing them to +# Pagy.new|Pagy::Countless.new|Pagy::Calendar::*.new or any of the #pagy* controller methods +# Here are the few that make more sense as DEFAULTs: +Pagy::DEFAULT[:limit] = 20 # default +Pagy::DEFAULT[:size] = 7 # default +Pagy::DEFAULT[:ends] = true # default +# Pagy::DEFAULT[:page_param] = :page # default +# Pagy::DEFAULT[:count_args] = [] # example for non AR ORMs +# Pagy::DEFAULT[:max_pages] = 3000 # example + + +# Extras +# See https://ddnexus.github.io/pagy/categories/extra + + +# Legacy Compatibility Extras + +# Size extra: Enable the Array type for the `:size` variable (e.g. `size: [1,4,4,1]`) +# See https://ddnexus.github.io/pagy/docs/extras/size +# require 'pagy/extras/size' # must be required before the other extras + + +# Backend Extras + +# Arel extra: For better performance utilizing grouped ActiveRecord collections: +# See: https://ddnexus.github.io/pagy/docs/extras/arel +# require 'pagy/extras/arel' + +# Array extra: Paginate arrays efficiently, avoiding expensive array-wrapping and without overriding +# See https://ddnexus.github.io/pagy/docs/extras/array +# require 'pagy/extras/array' + +# Calendar extra: Add pagination filtering by calendar time unit (year, quarter, month, week, day) +# See https://ddnexus.github.io/pagy/docs/extras/calendar +# require 'pagy/extras/calendar' +# Default for each calendar unit class in IRB: +# >> Pagy::Calendar::Year::DEFAULT +# >> Pagy::Calendar::Quarter::DEFAULT +# >> Pagy::Calendar::Month::DEFAULT +# >> Pagy::Calendar::Week::DEFAULT +# >> Pagy::Calendar::Day::DEFAULT +# +# Uncomment the following lines, if you need calendar localization without using the I18n extra +# module LocalizePagyCalendar +# def localize(time, opts) +# ::I18n.l(time, **opts) +# end +# end +# Pagy::Calendar.prepend LocalizePagyCalendar + +# Countless extra: Paginate without any count, saving one query per rendering +# See https://ddnexus.github.io/pagy/docs/extras/countless +# require 'pagy/extras/countless' +# Pagy::DEFAULT[:countless_minimal] = false # default (eager loading) + +# Elasticsearch Rails extra: Paginate `ElasticsearchRails::Results` objects +# See https://ddnexus.github.io/pagy/docs/extras/elasticsearch_rails +# Default :pagy_search method: change only if you use also +# the searchkick or meilisearch extra that defines the same +# Pagy::DEFAULT[:elasticsearch_rails_pagy_search] = :pagy_search +# Default original :search method called internally to do the actual search +# Pagy::DEFAULT[:elasticsearch_rails_search] = :search +# require 'pagy/extras/elasticsearch_rails' + +# Headers extra: http response headers (and other helpers) useful for API pagination +# See https://ddnexus.github.io/pagy/docs/extras/headers +# require 'pagy/extras/headers' +# Pagy::DEFAULT[:headers] = { page: 'Current-Page', +# limit: 'Page-Items', +# count: 'Total-Count', +# pages: 'Total-Pages' } # default + +# Keyset extra: Paginate with the Pagy keyset pagination technique +# See https://ddnexus.github.io/pagy/docs/extras/keyset +# require 'pagy/extras/keyset' + +# Meilisearch extra: Paginate `Meilisearch` result objects +# See https://ddnexus.github.io/pagy/docs/extras/meilisearch +# Default :pagy_search method: change only if you use also +# the elasticsearch_rails or searchkick extra that define the same method +# Pagy::DEFAULT[:meilisearch_pagy_search] = :pagy_search +# Default original :search method called internally to do the actual search +# Pagy::DEFAULT[:meilisearch_search] = :ms_search +# require 'pagy/extras/meilisearch' + +# Metadata extra: Provides the pagination metadata to Javascript frameworks like Vue.js, react.js, etc. +# See https://ddnexus.github.io/pagy/docs/extras/metadata +# you must require the JS Tools internal extra (BEFORE the metadata extra) ONLY if you need also the :sequels +# require 'pagy/extras/js_tools' +# require 'pagy/extras/metadata' +# For performance reasons, you should explicitly set ONLY the metadata you use in the frontend +# Pagy::DEFAULT[:metadata] = %i[scaffold_url page prev next last] # example + +# Searchkick extra: Paginate `Searchkick::Results` objects +# See https://ddnexus.github.io/pagy/docs/extras/searchkick +# Default :pagy_search method: change only if you use also +# the elasticsearch_rails or meilisearch extra that defines the same +# Pagy::DEFAULT[:searchkick_pagy_search] = :pagy_search +# Default original :search method called internally to do the actual search +# Pagy::DEFAULT[:searchkick_search] = :search +# require 'pagy/extras/searchkick' +# uncomment if you are going to use Searchkick.pagy_search +# Searchkick.extend Pagy::Searchkick + + +# Frontend Extras + +# Bootstrap extra: Add nav, nav_js and combo_nav_js helpers and templates for Bootstrap pagination +# See https://ddnexus.github.io/pagy/docs/extras/bootstrap +require 'pagy/extras/bootstrap' + +# Bulma extra: Add nav, nav_js and combo_nav_js helpers and templates for Bulma pagination +# See https://ddnexus.github.io/pagy/docs/extras/bulma +# require 'pagy/extras/bulma' + +# Pagy extra: Add the pagy styled versions of the javascript-powered navs +# and a few other components to the Pagy::Frontend module. +# See https://ddnexus.github.io/pagy/docs/extras/pagy +require 'pagy/extras/pagy' + +# Multi size var used by the *_nav_js helpers +# See https://ddnexus.github.io/pagy/docs/extras/pagy#steps +# Pagy::DEFAULT[:steps] = { 0 => 5, 540 => 7, 720 => 9 } # example + + +# Feature Extras + +# Gearbox extra: Automatically change the limit per page depending on the page number +# See https://ddnexus.github.io/pagy/docs/extras/gearbox +# require 'pagy/extras/gearbox' +# set to false only if you want to make :gearbox_extra an opt-in variable +# Pagy::DEFAULT[:gearbox_extra] = false # default true +# Pagy::DEFAULT[:gearbox_limit] = [15, 30, 60, 100] # default + +# Limit extra: Allow the client to request a custom limit per page with an optional selector UI +# See https://ddnexus.github.io/pagy/docs/extras/limit +# require 'pagy/extras/limit' +# set to false only if you want to make :limit_extra an opt-in variable +# Pagy::DEFAULT[:limit_extra] = false # default true +# Pagy::DEFAULT[:limit_param] = :limit # default +# Pagy::DEFAULT[:limit_max] = 100 # default + +# Overflow extra: Allow for easy handling of overflowing pages +# See https://ddnexus.github.io/pagy/docs/extras/overflow +# require 'pagy/extras/overflow' +# Pagy::DEFAULT[:overflow] = :empty_page # default (other options: :last_page and :exception) + +# Trim extra: Remove the page=1 param from links +# See https://ddnexus.github.io/pagy/docs/extras/trim +# require 'pagy/extras/trim' +# set to false only if you want to make :trim_extra an opt-in variable +# Pagy::DEFAULT[:trim_extra] = false # default true + +# Standalone extra: Use pagy in non Rack environment/gem +# See https://ddnexus.github.io/pagy/docs/extras/standalone +# require 'pagy/extras/standalone' +# Pagy::DEFAULT[:url] = 'http://www.example.com/subdir' # optional default + +# Jsonapi extra: Implements JSON:API specifications +# See https://ddnexus.github.io/pagy/docs/extras/jsonapi +# require 'pagy/extras/jsonapi' # must be required after the other extras +# set to false only if you want to make :jsonapi an opt-in variable +# Pagy::DEFAULT[:jsonapi] = false # default true + +# Rails +# Enable the .js file required by the helpers that use javascript +# (pagy*_nav_js, pagy*_combo_nav_js, and pagy_limit_selector_js) +# See https://ddnexus.github.io/pagy/docs/api/javascript + +# With the asset pipeline +# Sprockets need to look into the pagy javascripts dir, so add it to the assets paths +# Rails.application.config.assets.paths << Pagy.root.join('javascripts') + +# I18n + +# Pagy internal I18n: ~18x faster using ~10x less memory than the i18n gem +# See https://ddnexus.github.io/pagy/docs/api/i18n +# Notice: No need to configure anything in this section if your app uses only "en" +# or if you use the i18n extra below +# +# Examples: +# load the "de" built-in locale: +# Pagy::I18n.load(locale: 'de') +# +# load the "de" locale defined in the custom file at :filepath: +# Pagy::I18n.load(locale: 'de', filepath: 'path/to/pagy-de.yml') +# +# load the "de", "en" and "es" built-in locales: +# (the first passed :locale will be used also as the default_locale) +# Pagy::I18n.load({ locale: 'de' }, +# { locale: 'en' }, +# { locale: 'es' }) +# +# load the "en" built-in locale, a custom "es" locale, +# and a totally custom locale complete with a custom :pluralize proc: +# (the first passed :locale will be used also as the default_locale) +# Pagy::I18n.load({ locale: 'en' }, +# { locale: 'es', filepath: 'path/to/pagy-es.yml' }, +# { locale: 'xyz', # not built-in +# filepath: 'path/to/pagy-xyz.yml', +# pluralize: lambda{ |count| ... } ) + + +# I18n extra: uses the standard i18n gem which is ~18x slower using ~10x more memory +# than the default pagy internal i18n (see above) +# See https://ddnexus.github.io/pagy/docs/extras/i18n +# require 'pagy/extras/i18n' + + +# When you are done setting your own default freeze it, so it will not get changed accidentally +Pagy::DEFAULT.freeze diff --git a/config/initializers/permissions_policy.rb b/config/initializers/permissions_policy.rb new file mode 100644 index 0000000..00f64d7 --- /dev/null +++ b/config/initializers/permissions_policy.rb @@ -0,0 +1,11 @@ +# Define an application-wide HTTP permissions policy. For further +# information see https://developers.google.com/web/updates/2018/06/feature-policy +# +# Rails.application.config.permissions_policy do |f| +# f.camera :none +# f.gyroscope :none +# f.microphone :none +# f.usb :none +# f.fullscreen :self +# f.payment :self, "https://secure.example.com" +# end diff --git a/config/initializers/postal_config.rb b/config/initializers/postal_config.rb new file mode 100644 index 0000000..39b51e5 --- /dev/null +++ b/config/initializers/postal_config.rb @@ -0,0 +1 @@ +POSTAL_CONFIG = YAML.load_file("#{Rails.root.to_s}/config/postal.yml")["production"] diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 0000000..8ca56fc --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,33 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t "hello" +# +# In views, this is aliased to just `t`: +# +# <%= t("hello") %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# The following keys must be escaped otherwise they will not be retrieved by +# the default I18n backend: +# +# true, false, on, off, yes, no +# +# Instead, surround them with single quotes. +# +# en: +# "true": "foo" +# +# To learn more, please read the Rails Internationalization guide +# available at https://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/config/postal.yml b/config/postal.yml new file mode 100644 index 0000000..131b7af --- /dev/null +++ b/config/postal.yml @@ -0,0 +1,13 @@ + production: + host: 127.0.0.1 + database: postal1 + username: postal + password: postal + port: 3306 + +development: + host: 127.0.0.1 + database: postal1 + username: postal + password: postal + port: 3306 diff --git a/config/puma.rb b/config/puma.rb new file mode 100644 index 0000000..daaf036 --- /dev/null +++ b/config/puma.rb @@ -0,0 +1,43 @@ +# Puma can serve each request in a thread from an internal thread pool. +# The `threads` method setting takes two numbers: a minimum and maximum. +# Any libraries that use thread pools should be configured to match +# the maximum value specified for Puma. Default is set to 5 threads for minimum +# and maximum; this matches the default thread size of Active Record. +# +max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 } +min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count } +threads min_threads_count, max_threads_count + +# Specifies the `worker_timeout` threshold that Puma will use to wait before +# terminating a worker in development environments. +# +worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development" + +# Specifies the `port` that Puma will listen on to receive requests; default is 3000. +# +port ENV.fetch("PORT") { 3000 } + +# Specifies the `environment` that Puma will run in. +# +environment ENV.fetch("RAILS_ENV") { "development" } + +# Specifies the `pidfile` that Puma will use. +pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" } + +# Specifies the number of `workers` to boot in clustered mode. +# Workers are forked web server processes. If using threads and workers together +# the concurrency of the application would be max `threads` * `workers`. +# Workers do not work on JRuby or Windows (both of which do not support +# processes). +# +# workers ENV.fetch("WEB_CONCURRENCY") { 2 } + +# Use the `preload_app!` method when specifying a `workers` number. +# This directive tells Puma to first boot the application and load code +# before forking the application. This takes advantage of Copy On Write +# process behavior so workers use less memory. +# +# preload_app! + +# Allow puma to be restarted by `bin/rails restart` command. +plugin :tmp_restart diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 0000000..854b60a --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,9 @@ +Rails.application.routes.draw do + resources :messages + resources :deliveries + get '/export', to: 'messages#export' + + # Defines the root path route ("/") + root "reports#index" + get '/search', to: 'reports#search' +end diff --git a/config/storage.yml b/config/storage.yml new file mode 100644 index 0000000..4942ab6 --- /dev/null +++ b/config/storage.yml @@ -0,0 +1,34 @@ +test: + service: Disk + root: <%= Rails.root.join("tmp/storage") %> + +local: + service: Disk + root: <%= Rails.root.join("storage") %> + +# Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) +# amazon: +# service: S3 +# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> +# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> +# region: us-east-1 +# bucket: your_own_bucket-<%= Rails.env %> + +# Remember not to checkin your GCS keyfile to a repository +# google: +# service: GCS +# project: your_project +# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> +# bucket: your_own_bucket-<%= Rails.env %> + +# Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key) +# microsoft: +# service: AzureStorage +# storage_account_name: your_account_name +# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %> +# container: your_container_name-<%= Rails.env %> + +# mirror: +# service: Mirror +# primary: local +# mirrors: [ amazon, google, microsoft ] diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 0000000..6bf4ec5 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,251 @@ +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# This file is the source Rails uses to define your schema when running `bin/rails +# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to +# be faster and is potentially less error prone than running all of your +# migrations from scratch. Old migrations may fail to apply correctly if those +# migrations use external dependencies or application code. +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema[7.0].define(version: 0) do + create_table "clicks", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.integer "message_id" + t.integer "link_id" + t.string "ip_address" + t.string "country" + t.string "city" + t.string "user_agent" + t.decimal "timestamp", precision: 18, scale: 6 + t.index ["link_id"], name: "on_link_id" + t.index ["message_id"], name: "on_message_id" + end + + create_table "deliveries", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.integer "message_id" + t.string "status" + t.integer "code" + t.string "output", limit: 512 + t.string "details", limit: 512 + t.boolean "sent_with_ssl", default: false + t.string "log_id", limit: 100 + t.decimal "timestamp", precision: 18, scale: 6 + t.decimal "time", precision: 8, scale: 2 + t.index ["message_id"], name: "on_message_id" + end + + create_table "links", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.integer "message_id" + t.string "token" + t.string "hash" + t.text "url" + t.decimal "timestamp", precision: 18, scale: 6 + t.index ["message_id"], name: "on_message_id" + t.index ["token"], name: "on_token", length: 8 + end + + create_table "live_stats", primary_key: ["minute", "type"], charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.string "type", limit: 20, null: false + t.integer "minute", null: false + t.integer "count" + t.decimal "timestamp", precision: 18, scale: 6 + end + + create_table "loads", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.integer "message_id" + t.string "ip_address" + t.string "country" + t.string "city" + t.string "user_agent" + t.decimal "timestamp", precision: 18, scale: 6 + t.index ["message_id"], name: "on_message_id" + end + + create_table "messages", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.string "token" + t.string "scope", limit: 10 + t.string "rcpt_to" + t.string "mail_from" + t.string "subject" + t.string "message_id" + t.decimal "timestamp", precision: 18, scale: 6 + t.integer "route_id" + t.integer "domain_id" + t.integer "credential_id" + t.string "status" + t.boolean "held", default: false + t.string "size" + t.decimal "last_delivery_attempt", precision: 18, scale: 6 + t.string "raw_table" + t.integer "raw_body_id" + t.integer "raw_headers_id" + t.boolean "inspected", default: false + t.boolean "spam", default: false + t.decimal "spam_score", precision: 8, scale: 2, default: "0.0" + t.boolean "threat", default: false + t.string "threat_details" + t.boolean "bounce", default: false + t.integer "bounce_for_id", default: 0 + t.string "tag" + t.decimal "loaded", precision: 18, scale: 6 + t.decimal "clicked", precision: 18, scale: 6 + t.boolean "received_with_ssl" + t.decimal "hold_expiry", precision: 18, scale: 6 + t.integer "tracked_links", default: 0 + t.integer "tracked_images", default: 0 + t.integer "parsed", limit: 1, default: 0 + t.integer "endpoint_id" + t.string "endpoint_type" + t.index ["bounce_for_id"], name: "on_bounce_for_id" + t.index ["held"], name: "on_held" + t.index ["mail_from", "timestamp"], name: "on_mail_from", length: { mail_from: 12 } + t.index ["message_id"], name: "on_message_id", length: 8 + t.index ["raw_table"], name: "on_raw_table", length: 14 + t.index ["rcpt_to", "timestamp"], name: "on_rcpt_to", length: { rcpt_to: 12 } + t.index ["scope", "spam", "status", "timestamp"], name: "on_scope_and_status", length: { scope: 1, status: 6 } + t.index ["scope", "spam", "tag", "timestamp"], name: "on_scope_and_tag", length: { scope: 1, tag: 8 } + t.index ["scope", "spam", "timestamp"], name: "on_scope_and_spam", length: { scope: 1 } + t.index ["scope", "threat", "status", "timestamp"], name: "on_scope_and_thr_status", length: { scope: 1, status: 6 } + t.index ["scope", "threat", "timestamp"], name: "on_scope_and_threat", length: { scope: 1 } + t.index ["status"], name: "on_status", length: 8 + t.index ["token"], name: "on_token", length: 6 + end + + create_table "migrations", primary_key: "version", id: :integer, default: nil, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + end + + create_table "raw-2024-04-01", id: :integer, charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.binary "data", size: :long + t.integer "next" + end + + create_table "raw-2024-04-02", id: :integer, charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.binary "data", size: :long + t.integer "next" + end + + create_table "raw-2024-04-05", id: :integer, charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.binary "data", size: :long + t.integer "next" + end + + create_table "raw-2024-06-25", id: :integer, charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.binary "data", size: :long + t.integer "next" + end + + create_table "raw-2024-06-26", id: :integer, charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.binary "data", size: :long + t.integer "next" + end + + create_table "raw-2024-07-06", id: :integer, charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.binary "data", size: :long + t.integer "next" + end + + create_table "raw-2024-07-07", id: :integer, charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.binary "data", size: :long + t.integer "next" + end + + create_table "raw-2024-07-08", id: :integer, charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.binary "data", size: :long + t.integer "next" + end + + create_table "raw-2024-07-09", id: :integer, charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.binary "data", size: :long + t.integer "next" + end + + create_table "raw-2024-07-10", id: :integer, charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.binary "data", size: :long + t.integer "next" + end + + create_table "raw_message_sizes", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.string "table_name" + t.bigint "size" + t.index ["table_name"], name: "on_table_name", length: 14 + end + + create_table "spam_checks", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.integer "message_id" + t.decimal "score", precision: 8, scale: 2 + t.string "code" + t.string "description" + t.index ["code"], name: "on_code", length: 8 + t.index ["message_id"], name: "on_message_id" + end + + create_table "stats_daily", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.integer "time" + t.bigint "incoming" + t.bigint "outgoing" + t.bigint "spam" + t.bigint "bounces" + t.bigint "held" + t.index ["time"], name: "on_time", unique: true + end + + create_table "stats_hourly", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.integer "time" + t.bigint "incoming" + t.bigint "outgoing" + t.bigint "spam" + t.bigint "bounces" + t.bigint "held" + t.index ["time"], name: "on_time", unique: true + end + + create_table "stats_monthly", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.integer "time" + t.bigint "incoming" + t.bigint "outgoing" + t.bigint "spam" + t.bigint "bounces" + t.bigint "held" + t.index ["time"], name: "on_time", unique: true + end + + create_table "stats_yearly", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.integer "time" + t.bigint "incoming" + t.bigint "outgoing" + t.bigint "spam" + t.bigint "bounces" + t.bigint "held" + t.index ["time"], name: "on_time", unique: true + end + + create_table "suppressions", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.string "type" + t.string "address" + t.string "reason" + t.decimal "timestamp", precision: 18, scale: 6 + t.decimal "keep_until", precision: 18, scale: 6 + t.index ["address"], name: "on_address", length: 6 + t.index ["keep_until"], name: "on_keep_until" + end + + create_table "webhook_requests", id: :integer, charset: "utf8mb4", collation: "utf8mb4_unicode_ci", force: :cascade do |t| + t.string "uuid" + t.string "event" + t.integer "attempt" + t.decimal "timestamp", precision: 18, scale: 6 + t.integer "status_code" + t.text "body" + t.text "payload" + t.integer "will_retry", limit: 1 + t.string "url" + t.integer "webhook_id" + t.index ["event"], name: "on_event", length: 8 + t.index ["timestamp"], name: "on_timestamp" + t.index ["uuid"], name: "on_uuid", length: 8 + t.index ["webhook_id"], name: "on_webhook_id" + end + +end diff --git a/db/seeds.rb b/db/seeds.rb new file mode 100644 index 0000000..bc25fce --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,7 @@ +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the bin/rails db:seed command (or created alongside the database with db:setup). +# +# Examples: +# +# movies = Movie.create([{ name: "Star Wars" }, { name: "Lord of the Rings" }]) +# Character.create(name: "Luke", movie: movies.first) diff --git a/index.html.erb b/index.html.erb new file mode 100644 index 0000000..b51d1bc --- /dev/null +++ b/index.html.erb @@ -0,0 +1,61 @@ + +
+

Mail Delivery Report

+
+<%= form_with url: "/search", method: :get do |form| %> + <%= form.label :date_from, "From" %> + <%= form.date_field :date_from %> + <%= form.label :date_to, "To" %> + <%= form.date_field :date_to %> + <%= form.label :rcpt_to, "To" %> + <%= form.email_field :rcpt_to %> + <%= form.label :mail_from, "From" %> + <%= form.email_field :mail_from %> + <%= form.label :status, "Status" %> + <%= form.select :status , ['All', 'Sent','SoftFail', 'HardFail','Held'] %> + <%= form.submit "search" %> +<% end %> +<%= link_to "Download Report" ,:action => :export %> + +
+ <% if @mails.present? %> +
+ + + + + + + + + + + + + + + + <% @mails.each(:as => :hash ) do |mail| %> + + + + + + + + + + + + <% end %> + +
Message IDSenderRecipientSubjectDateTimeSizeStatusDelivery Details
<%= mail['message_id'] %><%= mail['mail_from'] %><%= mail['rcpt_to'] %><%= mail['subject'] %><%= Time.at(mail['timestamp']).strftime('%d-%m-%Y') %><%= Time.at(mail['timestamp']).strftime('%H:%M:%S') %><%= mail['size'].to_f >= 1048576 ? "#{(mail['size'].to_d/1048576).round(2)} MB" : "#{(mail['size'].to_d/1024).round(2)} KB"%><%= mail['status'] == "Sent"? "Delivered": mail['status'] %><%= mail['details'] %>
+
+ <% end %> +
diff --git a/lib/assets/.keep b/lib/assets/.keep new file mode 100644 index 0000000..e69de29 diff --git a/lib/tasks/.keep b/lib/tasks/.keep new file mode 100644 index 0000000..e69de29 diff --git a/log/.keep b/log/.keep new file mode 100644 index 0000000..e69de29 diff --git a/mail_delivery_report.csv b/mail_delivery_report.csv new file mode 100644 index 0000000..c4d1704 --- /dev/null +++ b/mail_delivery_report.csv @@ -0,0 +1,12449 @@ +ID|SENDER|RECIPIENT|SUBJECT|DATE|TIME|SIZE|STATUS|DELIVERY DETAILS +1|test@manipalgroup.info|akshay@deeproot.in|Test Message at September 02, 2024 07:47|02-09-2024|13:17:17|0.92 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +2|test.user@manipalgroup.info|uishwar@gmail.com|Test Mail|02-09-2024|13:32:54|2.43 KB|Sent|Message for uishwar@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3|test.user@manipalgroup.info|ishwar.u@manipalgroup.info|Test Mail1|02-09-2024|13:57:01|2.55 KB|Sent|Message for ishwar.u@manipalgroup.info accepted by 125.22.91.112:25 (mx1.manipalgroup.info) +4|test@manipalgroup.info|test@manipalgroup.info|Test Message at September 02, 2024 08:32|02-09-2024|14:02:59|0.92 KB|Sent|Message for test@manipalgroup.info accepted by 125.22.91.112:25 (mx1.manipalgroup.info) +4|test@manipalgroup.info|test@manipalgroup.info|Test Message at September 02, 2024 08:32|02-09-2024|14:02:59|0.92 KB|Sent|Message for test@manipalgroup.info accepted by 125.22.91.112:25 (mx1.manipalgroup.info) +5|test@manipalgroup.info|test@manipalgroup.info|Test Message at September 02, 2024 08:34|02-09-2024|14:05:03|0.92 KB|Sent|Message for test@manipalgroup.info accepted by 125.22.91.112:25 (mx1.manipalgroup.info) +5|test@manipalgroup.info|test@manipalgroup.info|Test Message at September 02, 2024 08:34|02-09-2024|14:05:03|0.92 KB|Sent|Message for test@manipalgroup.info accepted by 125.22.91.112:25 (mx1.manipalgroup.info) +6|test@manipalgroup.info|test@manipalgroup.info|Test Message at September 02, 2024 08:35|02-09-2024|14:06:07|0.92 KB|Sent|Message for test@manipalgroup.info accepted by 125.22.91.112:25 (mx1.manipalgroup.info) +7|test.user@manipalgroup.info|ishwar.u@manipalgroup.info|Test Mail2|02-09-2024|14:06:08|2.56 KB|Sent|Message for ishwar.u@manipalgroup.info accepted by 125.22.91.112:25 (mx1.manipalgroup.info) +8|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Sat, 14 Sep 2024 11:29:20 +0530|14-09-2024|11:29:14|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +9|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Sat, 14 Sep 2024 11:29:45 +0530|14-09-2024|11:29:38|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +10|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Sat, 14 Sep 2024 11:30:35 +0530|14-09-2024|11:30:28|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +11|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Sat, 14 Sep 2024 11:33:07 +0530|14-09-2024|11:33:00|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +12|test.user@manipalgroup.info|uishwar@gmail.com|Test Mail|16-09-2024|08:49:26|2.47 KB|Sent|Message for uishwar@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +13|test.user@manipalgroup.info|uishwar@gmail.com|Test Mail|17-09-2024|09:46:30|2.53 KB|Sent|Message for uishwar@gmail.com accepted by 142.251.175.27:25 (gmail-smtp-in.l.google.com) +14|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Tue, 17 Sep 2024 13:10:19 +0530|17-09-2024|13:10:11|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +15|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Tue, 17 Sep 2024 13:11:12 +0530|17-09-2024|13:11:04|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +16|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Tue, 17 Sep 2024 13:11:33 +0530|17-09-2024|13:11:25|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +17|eCAS_MutualFunds@manipaltechnologies.com|ncnavin@gmail.com|August-2024, Consolidated Account Statement (CAS) across Mutual Funds|17-09-2024|13:11:31|63.44 KB|Sent|Message for ncnavin@gmail.com accepted by 142.251.175.27:25 (gmail-smtp-in.l.google.com) +18|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Tue, 17 Sep 2024 13:12:37 +0530|17-09-2024|13:12:28|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +19|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Tue, 17 Sep 2024 13:13:17 +0530|17-09-2024|13:13:09|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +20|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Tue, 17 Sep 2024 13:13:31 +0530|17-09-2024|13:13:23|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +21|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Tue, 17 Sep 2024 13:18:16 +0530|17-09-2024|13:18:07|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +22|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Tue, 17 Sep 2024 13:20:17 +0530|17-09-2024|13:20:09|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +23|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Tue, 17 Sep 2024 14:52:46 +0530|17-09-2024|14:52:38|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +24|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Tue, 17 Sep 2024 14:58:23 +0530|17-09-2024|14:58:15|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +25|xdeeproot@manipalgroup.info|akshay@deeproot.in|test Tue, 17 Sep 2024 15:33:55 +0530|17-09-2024|15:33:47|0.4 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +26|eCAS_MutualFunds@manipaltechnologies.com|ncnavin@gmail.com|August-2024, Consolidated Account Statement (CAS) across Mutual Funds|17-09-2024|17:36:11|63.44 KB|Sent|Message for ncnavin@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +27|eCAS_MutualFunds@manipaltechnologies.com|ncnavin@gmail.com|August-2024, Consolidated Account Statement (CAS) across Mutual Funds|17-09-2024|17:37:18|63.44 KB|Sent|Message for ncnavin@gmail.com accepted by 142.251.175.27:25 (gmail-smtp-in.l.google.com) +28|eCAS_MutualFunds@manipaltechnologies.com|ncnavin@gmail.com|August-2024, Consolidated Account Statement (CAS) across Mutual Funds|17-09-2024|17:41:13|63.45 KB|Sent|Message for ncnavin@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +30|eCAS_MutualFunds@manipaltechnologies.com|ncnavin@gmail.com|August-2024, Consolidated Account Statement (CAS) across Mutual Funds|17-09-2024|17:43:09|63.45 KB|Sent|Message for ncnavin@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +31|eCAS_MutualFunds@manipaltechnologies.com|ncnavin@gmail.com|August-2024, Consolidated Account Statement (CAS) across Mutual Funds|17-09-2024|18:03:44|63.45 KB|Sent|Message for ncnavin@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +32|eCAS_MutualFunds@manipaltechnologies.com|ncnavin@gmail.com|Greetings|17-09-2024|18:11:26|0.42 KB|Sent|Message for ncnavin@gmail.com accepted by 142.251.175.27:25 (gmail-smtp-in.l.google.com) +33|test.user@manipalgroup.info|uishwar@gmail.com|Test|17-09-2024|18:31:19|2.52 KB|Sent|Message for uishwar@gmail.com accepted by 142.251.175.27:25 (gmail-smtp-in.l.google.com) +34|test@manipalgroup.info|akshay@deeproot.in|test Thu, 19 Sep 2024 18:33:44 +0530|19-09-2024|18:33:48|0.38 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +35|test@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 18:36:59 +0530|25-09-2024|18:37:05|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +36|test@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 18:01:44 +0530|25-09-2024|18:42:00|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +37|akshay@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 17:59:35 +0530|25-09-2024|19:06:19|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +38|test@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 18:00:37 +0530|25-09-2024|19:06:19|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +39|test@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 18:49:13 +0530|25-09-2024|19:06:19|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +40|akshay@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 17:59:09 +0530|25-09-2024|19:06:19|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +41|test@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 18:51:03 +0530|25-09-2024|19:06:19|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +42|test@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 19:07:07 +0530|25-09-2024|19:07:08|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +43|test@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 18:51:48 +0530|25-09-2024|19:12:06|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +44|test@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 19:17:01 +0530|25-09-2024|19:17:01|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +45|test@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 18:15:35 +0530|25-09-2024|19:26:57|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +46|test@manipalgroup.info|akshay@deeproot.in|test Wed, 25 Sep 2024 18:16:41 +0530|25-09-2024|19:36:56|0.58 KB|Sent|Message for akshay@deeproot.in accepted by 119.81.70.179:25 (abra.hammer.today) +47|eCAS_MutualFunds@manipaltechnologies.com|ncnavin@gmail.com|August-2024, Consolidated Account Statement (CAS) across Mutual Funds|27-09-2024|14:03:30|61.95 KB|Sent|Message for ncnavin@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +48|test.user@manipalgroup.info|ishwar.u@manipalgroup.info|Test Mail|07-10-2024|13:57:52|2.57 KB|Sent|Message for ishwar.u@manipalgroup.info accepted by 125.22.91.112:25 (mx1.manipalgroup.info) +49|test.user@manipalgroup.info|uishwar@gmail.com|Test Mail|07-10-2024|13:57:52|2.57 KB|Sent|Message for uishwar@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +50|eCAS_MutualFunds@manipaltechnologies.com|arun105cit@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:56|60.54 KB|Sent|Message for arun105cit@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +51|eCAS_MutualFunds@manipaltechnologies.com|arun107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:56|68.42 KB|Sent|Message for arun107@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +52|eCAS_MutualFunds@manipaltechnologies.com|arun108ku@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:56|46.45 KB|Sent|Message for arun108ku@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +53|eCAS_MutualFunds@manipaltechnologies.com|arun10sharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:56|68.55 KB|Sent|Message for arun10sharma@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +54|eCAS_MutualFunds@manipaltechnologies.com|arun11.jena@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:56|57.22 KB|Sent|Message for arun11.jena@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +55|eCAS_MutualFunds@manipaltechnologies.com|arun110543@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|57.97 KB|Sent|Message for arun110543@yahoo.com accepted by 98.136.96.74:25 (mta5.am0.yahoodns.net) +56|eCAS_MutualFunds@manipaltechnologies.com|arun110543@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|70.62 KB|Sent|Message for arun110543@yahoo.com accepted by 98.136.96.74:25 (mta5.am0.yahoodns.net) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +57|eCAS_MutualFunds@manipaltechnologies.com|arun110980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|76.59 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun110980@gmail.com to suppression list because delivery has failed 18 times. +58|eCAS_MutualFunds@manipaltechnologies.com|arun1110@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|56.82 KB|Sent|Message for arun1110@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +59|eCAS_MutualFunds@manipaltechnologies.com|arun11111969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:48:57|50.62 KB|Sent|Message for arun11111969@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +60|eCAS_MutualFunds@manipaltechnologies.com|arun111962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:04|51.67 KB|Sent|Message for arun111962@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +61|eCAS_MutualFunds@manipaltechnologies.com|arun111msg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:04|48.14 KB|Sent|Message for arun111msg@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +62|eCAS_MutualFunds@manipaltechnologies.com|arun1122bansal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:05|51.97 KB|Sent|Message for arun1122bansal@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +63|eCAS_MutualFunds@manipaltechnologies.com|arun11311@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:05|49.54 KB|Sent|Message for arun11311@yahoo.com accepted by 98.136.96.77:25 (mta7.am0.yahoodns.net) +64|eCAS_MutualFunds@manipaltechnologies.com|arun113a@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:05|67.4 KB|Sent|Message for arun113a@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +65|eCAS_MutualFunds@manipaltechnologies.com|arun1156@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:05|63.02 KB|Sent|Message for arun1156@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +66|eCAS_MutualFunds@manipaltechnologies.com|arun11609@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:06|73.22 KB|Sent|Message for arun11609@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +67|eCAS_MutualFunds@manipaltechnologies.com|arun11645@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:06|62.27 KB|Sent|Message for arun11645@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +68|eCAS_MutualFunds@manipaltechnologies.com|arun11ahir@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:07|56.19 KB|Sent|Message for arun11ahir@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +69|eCAS_MutualFunds@manipaltechnologies.com|arun11kushwaha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:07|59.22 KB|Sent|Message for arun11kushwaha@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +70|eCAS_MutualFunds@manipaltechnologies.com|arun12021964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:07|65.83 KB|Sent|Message for arun12021964@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +71|eCAS_MutualFunds@manipaltechnologies.com|arun121212tri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:07|65.5 KB|Sent|Message for arun121212tri@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +72|eCAS_MutualFunds@manipaltechnologies.com|arun121266@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:07|66.28 KB|Sent|Message for arun121266@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +73|eCAS_MutualFunds@manipaltechnologies.com|arun121282@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:08|51.72 KB|Sent|Message for arun121282@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +74|eCAS_MutualFunds@manipaltechnologies.com|arun1218@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:08|54.9 KB|Sent|Message for arun1218@yahoo.com accepted by 98.136.96.77:25 (mta7.am0.yahoodns.net) +75|eCAS_MutualFunds@manipaltechnologies.com|arun1228197@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:08|62.45 KB|Sent|Message for arun1228197@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +76|eCAS_MutualFunds@manipaltechnologies.com|arun123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:08|54.45 KB|Sent|Message for arun123@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +77|eCAS_MutualFunds@manipaltechnologies.com|arun123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:08|60.44 KB|Sent|Message for arun123@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +78|eCAS_MutualFunds@manipaltechnologies.com|arun123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:08|54.46 KB|Sent|Message for arun123@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +79|eCAS_MutualFunds@manipaltechnologies.com|arun123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:09|61.67 KB|Sent|Message for arun123@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +80|eCAS_MutualFunds@manipaltechnologies.com|arun123sa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:09|75.17 KB|Sent|Message for arun123sa@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +81|eCAS_MutualFunds@manipaltechnologies.com|arun1272kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:09|51.64 KB|Sent|Message for arun1272kumar@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +82|eCAS_MutualFunds@manipaltechnologies.com|arun129115@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:09|60.17 KB|Sent|Message for arun129115@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +83|eCAS_MutualFunds@manipaltechnologies.com|arun12myl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:09|53.78 KB|Sent|Message for arun12myl@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +84|eCAS_MutualFunds@manipaltechnologies.com|arun130850@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:10|60.25 KB|Sent|Message for arun130850@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +85|eCAS_MutualFunds@manipaltechnologies.com|arun131097@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:10|65.47 KB|Sent|Message for arun131097@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +86|eCAS_MutualFunds@manipaltechnologies.com|arun13281@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:10|56.51 KB|Sent|Message for arun13281@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +87|eCAS_MutualFunds@manipaltechnologies.com|arun1349@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:10|83.17 KB|Sent|Message for arun1349@yahoo.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +88|eCAS_MutualFunds@manipaltechnologies.com|arun1357@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:10|59.58 KB|Sent|Message for arun1357@hotmail.com accepted by 52.101.40.25:25 (hotmail-com.olc.protection.outlook.com) +89|eCAS_MutualFunds@manipaltechnologies.com|arun1391951@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:11|66.91 KB|Sent|Message for arun1391951@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +90|eCAS_MutualFunds@manipaltechnologies.com|arun13980024@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:11|62.99 KB|Sent|Message for arun13980024@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +91|eCAS_MutualFunds@manipaltechnologies.com|arun13995672l@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:11|51.72 KB|Sent|Message for arun13995672l@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +92|eCAS_MutualFunds@manipaltechnologies.com|arun140.73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:11|51.75 KB|Sent|Message for arun140.73@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +93|eCAS_MutualFunds@manipaltechnologies.com|arun1406kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:11|72.49 KB|Sent|Message for arun1406kumar@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +94|eCAS_MutualFunds@manipaltechnologies.com|arun141047@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:12|52.13 KB|Sent|Message for arun141047@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +95|eCAS_MutualFunds@manipaltechnologies.com|arun14230@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:12|63.26 KB|Sent|Message for arun14230@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +96|eCAS_MutualFunds@manipaltechnologies.com|arun142jain@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:12|52.93 KB|Sent|Message for arun142jain@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +97|eCAS_MutualFunds@manipaltechnologies.com|arun143mng@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:12|49.79 KB|Sent|Message for arun143mng@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +98|eCAS_MutualFunds@manipaltechnologies.com|arun14403@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:12|49.35 KB|Sent|Message for arun14403@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +99|eCAS_MutualFunds@manipaltechnologies.com|arun14479@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|61.44 KB|Sent|Message for arun14479@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +100|eCAS_MutualFunds@manipaltechnologies.com|arun14vns@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|57.15 KB|Sent|Message for arun14vns@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +101|eCAS_MutualFunds@manipaltechnologies.com|arun15081974@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|62.17 KB|Sent|Message for arun15081974@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +102|eCAS_MutualFunds@manipaltechnologies.com|arun1526@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|59.2 KB|HardFail|Permanent SMTP delivery error when sending to 98.136.96.76:25 (mta6.am0.yahoodns.net) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +103|eCAS_MutualFunds@manipaltechnologies.com|arun152k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:13|52.29 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun152k@gmail.com to suppression list because delivery has failed 18 times. +104|eCAS_MutualFunds@manipaltechnologies.com|arun1541981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:14|49.25 KB|Sent|Message for arun1541981@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +105|eCAS_MutualFunds@manipaltechnologies.com|arun155996647@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:14|50.91 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +106|eCAS_MutualFunds@manipaltechnologies.com|arun1573sinha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:14|72.13 KB|Sent|Message for arun1573sinha@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +107|eCAS_MutualFunds@manipaltechnologies.com|arun1574754h@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:14|57.18 KB|Sent|Message for arun1574754h@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +108|eCAS_MutualFunds@manipaltechnologies.com|arun15797@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:14|52.77 KB|Sent|Message for arun15797@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +109|eCAS_MutualFunds@manipaltechnologies.com|arun1591@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:14|56.89 KB|Sent|Message for arun1591@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +110|eCAS_MutualFunds@manipaltechnologies.com|arun1611143@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:15|49.71 KB|Sent|Message for arun1611143@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +111|eCAS_MutualFunds@manipaltechnologies.com|arun161964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:15|63.67 KB|Sent|Message for arun161964@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +112|eCAS_MutualFunds@manipaltechnologies.com|arun1622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:15|74.21 KB|Sent|Message for arun1622@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +113|eCAS_MutualFunds@manipaltechnologies.com|arun16838@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:15|65.23 KB|Sent|Message for arun16838@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +114|eCAS_MutualFunds@manipaltechnologies.com|arun16957@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:15|79.46 KB|Sent|Message for arun16957@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +115|eCAS_MutualFunds@manipaltechnologies.com|arun16december@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:16|52.09 KB|Sent|Message for arun16december@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +116|eCAS_MutualFunds@manipaltechnologies.com|arun1709@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:16|73.25 KB|Sent|Message for arun1709@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +117|eCAS_MutualFunds@manipaltechnologies.com|arun1717p@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:16|55.51 KB|Sent|Message for arun1717p@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +118|eCAS_MutualFunds@manipaltechnologies.com|arun17jaiswal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:16|76.06 KB|Sent|Message for arun17jaiswal@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +119|eCAS_MutualFunds@manipaltechnologies.com|arun18.1972@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:16|67.5 KB|Sent|Message for arun18.1972@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +120|eCAS_MutualFunds@manipaltechnologies.com|arun1808@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:17|50.45 KB|Sent|Message for arun1808@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +121|eCAS_MutualFunds@manipaltechnologies.com|arun1835kumarbro20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:17|54.2 KB|Sent|Message for arun1835kumarbro20@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +122|eCAS_MutualFunds@manipaltechnologies.com|arun183@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:17|46.82 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +123|eCAS_MutualFunds@manipaltechnologies.com|arun18457@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:17|71.33 KB|Sent|Message for arun18457@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +124|eCAS_MutualFunds@manipaltechnologies.com|arun18887@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:17|84.34 KB|Sent|Message for arun18887@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +125|eCAS_MutualFunds@manipaltechnologies.com|arun18887@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|77.34 KB|Sent|Message for arun18887@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +126|eCAS_MutualFunds@manipaltechnologies.com|arun1919pandian@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|55.43 KB|Sent|Message for arun1919pandian@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +127|eCAS_MutualFunds@manipaltechnologies.com|arun193060@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|55.27 KB|Sent|Message for arun193060@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +128|eCAS_MutualFunds@manipaltechnologies.com|arun1947ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|52.23 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun1947ad@gmail.com to suppression list because delivery has failed 18 times. +129|eCAS_MutualFunds@manipaltechnologies.com|arun1951989@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:18|67.28 KB|Sent|Message for arun1951989@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +130|eCAS_MutualFunds@manipaltechnologies.com|arun195420das@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:19|53.66 KB|Sent|Message for arun195420das@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +131|eCAS_MutualFunds@manipaltechnologies.com|arun1956@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:19|51.91 KB|Sent|Message for arun1956@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +132|eCAS_MutualFunds@manipaltechnologies.com|arun1956biswas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:19|64.99 KB|Sent|Message for arun1956biswas@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +133|eCAS_MutualFunds@manipaltechnologies.com|arun1956biswas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:19|60.24 KB|Sent|Message for arun1956biswas@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +134|eCAS_MutualFunds@manipaltechnologies.com|arun1958@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:19|64.36 KB|Sent|Message for arun1958@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +135|eCAS_MutualFunds@manipaltechnologies.com|arun1964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:20|65.83 KB|Sent|Message for arun1964@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +136|eCAS_MutualFunds@manipaltechnologies.com|arun1965ag@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:20|66.13 KB|Sent|Message for arun1965ag@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +137|eCAS_MutualFunds@manipaltechnologies.com|arun1965rai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:20|71.14 KB|Sent|Message for arun1965rai@yahoo.com accepted by 98.136.96.76:25 (mta6.am0.yahoodns.net) +138|eCAS_MutualFunds@manipaltechnologies.com|arun1966pradhan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:20|57.13 KB|Sent|Message for arun1966pradhan@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +139|eCAS_MutualFunds@manipaltechnologies.com|arun1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:21|63.69 KB|Sent|Message for arun1967@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +140|eCAS_MutualFunds@manipaltechnologies.com|arun1970@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:21|66.99 KB|Sent|Message for arun1970@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +141|eCAS_MutualFunds@manipaltechnologies.com|arun1970@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:21|61.27 KB|Sent|Message for arun1970@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +142|eCAS_MutualFunds@manipaltechnologies.com|arun1971malik@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:21|65.78 KB|Sent|Message for arun1971malik@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +143|eCAS_MutualFunds@manipaltechnologies.com|arun1971malik@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:21|95.67 KB|Sent|Message for arun1971malik@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +144|eCAS_MutualFunds@manipaltechnologies.com|arun1972das@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:22|60.63 KB|Sent|Message for arun1972das@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +145|eCAS_MutualFunds@manipaltechnologies.com|arun1975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:22|54.66 KB|Sent|Message for arun1975@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +146|eCAS_MutualFunds@manipaltechnologies.com|arun1976@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:22|66.87 KB|Sent|Message for arun1976@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +147|eCAS_MutualFunds@manipaltechnologies.com|arun1979@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:22|56.99 KB|Sent|Message for arun1979@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +148|eCAS_MutualFunds@manipaltechnologies.com|arun198136@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:22|75.66 KB|Sent|Message for arun198136@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +149|eCAS_MutualFunds@manipaltechnologies.com|arun1981behera@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:52:23|67.42 KB|Sent|Message for arun1981behera@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +150|eCAS_MutualFunds@manipaltechnologies.com|ncnavin@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:53:56|51.66 KB|Sent|Message for ncnavin@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +151|eCAS_MutualFunds@manipaltechnologies.com|arun1982km@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:15|55.66 KB|Sent|Message for arun1982km@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +152|eCAS_MutualFunds@manipaltechnologies.com|arun1983.db@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:15|107.34 KB|Sent|Message for arun1983.db@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +153|eCAS_MutualFunds@manipaltechnologies.com|arun19830108@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:15|69.46 KB|Sent|Message for arun19830108@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +154|eCAS_MutualFunds@manipaltechnologies.com|arun19832009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:16|67.31 KB|Sent|Message for arun19832009@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +155|eCAS_MutualFunds@manipaltechnologies.com|arun1983arya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:16|81.31 KB|Sent|Message for arun1983arya@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +156|eCAS_MutualFunds@manipaltechnologies.com|arun1983dubey@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:16|70.89 KB|Sent|Message for arun1983dubey@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +157|eCAS_MutualFunds@manipaltechnologies.com|arun1984chugh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:16|61.84 KB|Sent|Message for arun1984chugh@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +158|eCAS_MutualFunds@manipaltechnologies.com|arun1984ghosh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:16|55.39 KB|Sent|Message for arun1984ghosh@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +159|eCAS_MutualFunds@manipaltechnologies.com|arun1984mandal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:17|69.49 KB|Sent|Message for arun1984mandal@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +160|eCAS_MutualFunds@manipaltechnologies.com|arun1984obra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:17|51.67 KB|Sent|Message for arun1984obra@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +161|eCAS_MutualFunds@manipaltechnologies.com|arun1984ravi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:17|68.6 KB|Sent|Message for arun1984ravi@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +162|eCAS_MutualFunds@manipaltechnologies.com|arun1984ravi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:17|67.12 KB|Sent|Message for arun1984ravi@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +163|eCAS_MutualFunds@manipaltechnologies.com|arun1985sharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:17|64.02 KB|Sent|Message for arun1985sharma@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +164|eCAS_MutualFunds@manipaltechnologies.com|arun1988@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:18|56.49 KB|Sent|Message for arun1988@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +165|eCAS_MutualFunds@manipaltechnologies.com|arun1989.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:18|57.21 KB|Sent|Message for arun1989.ac@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +166|eCAS_MutualFunds@manipaltechnologies.com|arun1989.vj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:18|57.91 KB|Sent|Message for arun1989.vj@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +167|eCAS_MutualFunds@manipaltechnologies.com|arun198904765@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:18|54.56 KB|Sent|Message for arun198904765@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +168|eCAS_MutualFunds@manipaltechnologies.com|arun1994gowda@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:19|51.13 KB|Sent|Message for arun1994gowda@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +169|eCAS_MutualFunds@manipaltechnologies.com|arun199905@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:19|55.78 KB|Sent|Message for arun199905@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +170|eCAS_MutualFunds@manipaltechnologies.com|arun19mishra70@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:19|67.8 KB|Sent|Message for arun19mishra70@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +171|eCAS_MutualFunds@manipaltechnologies.com|arun19rd93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:19|67.07 KB|Sent|Message for arun19rd93@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +172|eCAS_MutualFunds@manipaltechnologies.com|arun19yadav@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:19|62.39 KB|Sent|Message for arun19yadav@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +173|eCAS_MutualFunds@manipaltechnologies.com|arun1bhosale@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|63.35 KB|Sent|Message for arun1bhosale@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +174|eCAS_MutualFunds@manipaltechnologies.com|arun1jsr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|59.77 KB|Sent|Message for arun1jsr@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +175|eCAS_MutualFunds@manipaltechnologies.com|arun1kumar304@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|62.45 KB|Sent|Message for arun1kumar304@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +176|eCAS_MutualFunds@manipaltechnologies.com|arun1mc@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|57.96 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +176|eCAS_MutualFunds@manipaltechnologies.com|arun1mc@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|57.96 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +176|eCAS_MutualFunds@manipaltechnologies.com|arun1mc@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|57.96 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +176|eCAS_MutualFunds@manipaltechnologies.com|arun1mc@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|57.96 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +176|eCAS_MutualFunds@manipaltechnologies.com|arun1mc@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|57.96 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +176|eCAS_MutualFunds@manipaltechnologies.com|arun1mc@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|57.96 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +176|eCAS_MutualFunds@manipaltechnologies.com|arun1mc@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|57.96 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +176|eCAS_MutualFunds@manipaltechnologies.com|arun1mc@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|57.96 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +176|eCAS_MutualFunds@manipaltechnologies.com|arun1mc@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|57.96 KB|Sent|Message for arun1mc@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +177|eCAS_MutualFunds@manipaltechnologies.com|arun1mehul1rinki1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|59.84 KB|Sent|Message for arun1mehul1rinki1@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +178|eCAS_MutualFunds@manipaltechnologies.com|arun1mehul1rinki1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:20|64.51 KB|Sent|Message for arun1mehul1rinki1@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +179|eCAS_MutualFunds@manipaltechnologies.com|arun1more@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:21|51.24 KB|Sent|Message for arun1more@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +180|eCAS_MutualFunds@manipaltechnologies.com|arun1shelar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:21|65.2 KB|Sent|Message for arun1shelar@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +181|eCAS_MutualFunds@manipaltechnologies.com|arun20052@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:21|62.1 KB|Sent|Message for arun20052@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +182|eCAS_MutualFunds@manipaltechnologies.com|arun2005413@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:21|90.66 KB|Sent|Message for arun2005413@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +183|eCAS_MutualFunds@manipaltechnologies.com|arun20062006@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:21|56.58 KB|Sent|Message for arun20062006@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +184|eCAS_MutualFunds@manipaltechnologies.com|arun20081971@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:22|62.75 KB|Sent|Message for arun20081971@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +185|eCAS_MutualFunds@manipaltechnologies.com|arun2009anil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:22|51.04 KB|Sent|Message for arun2009anil@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +186|eCAS_MutualFunds@manipaltechnologies.com|arun2009ghosh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:22|64.8 KB|Sent|Message for arun2009ghosh@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +187|eCAS_MutualFunds@manipaltechnologies.com|arun2012mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:22|51.35 KB|Sent|Message for arun2012mishra@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +188|eCAS_MutualFunds@manipaltechnologies.com|arun2016tamil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:22|52.05 KB|Sent|Message for arun2016tamil@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +189|eCAS_MutualFunds@manipaltechnologies.com|arun2018rana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|71.5 KB|Sent|Message for arun2018rana@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +190|eCAS_MutualFunds@manipaltechnologies.com|arun202040kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|55.19 KB|Sent|Message for arun202040kumar@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta7.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta5.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta5.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta6.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta7.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta5.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta5.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta6.am0.yahoodns.net) +191|eCAS_MutualFunds@manipaltechnologies.com|arun2020@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|66.0 KB|Sent|Message for arun2020@yahoo.com accepted by 67.195.228.106:25 (mta5.am0.yahoodns.net) +192|eCAS_MutualFunds@manipaltechnologies.com|arun2020sahu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|74.95 KB|Sent|Message for arun2020sahu@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +193|eCAS_MutualFunds@manipaltechnologies.com|arun2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:23|53.3 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun2033@gmail.com to suppression list because delivery has failed 18 times. +194|eCAS_MutualFunds@manipaltechnologies.com|arun203992@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:24|59.35 KB|Sent|Message for arun203992@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +195|eCAS_MutualFunds@manipaltechnologies.com|arun2039@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:24|51.28 KB|Sent|Message for arun2039@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +196|eCAS_MutualFunds@manipaltechnologies.com|arun2044@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:24|58.62 KB|Sent|Message for arun2044@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +197|eCAS_MutualFunds@manipaltechnologies.com|arun20682@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:24|59.96 KB|Sent|Message for arun20682@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +198|eCAS_MutualFunds@manipaltechnologies.com|arun20682@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:24|55.26 KB|Sent|Message for arun20682@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +199|eCAS_MutualFunds@manipaltechnologies.com|arun2086babu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:24|59.4 KB|Sent|Message for arun2086babu@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +200|eCAS_MutualFunds@manipaltechnologies.com|arun2088@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:25|78.39 KB|Sent|Message for arun2088@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +201|eCAS_MutualFunds@manipaltechnologies.com|arun209@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:25|70.32 KB|Sent|Message for arun209@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +202|eCAS_MutualFunds@manipaltechnologies.com|arun20hytech@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:25|60.76 KB|Sent|Message for arun20hytech@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +203|eCAS_MutualFunds@manipaltechnologies.com|arun20k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:25|55.77 KB|Sent|Message for arun20k@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +204|eCAS_MutualFunds@manipaltechnologies.com|arun20rawani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:25|67.9 KB|Sent|Message for arun20rawani@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +205|eCAS_MutualFunds@manipaltechnologies.com|arun210782@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:26|51.41 KB|Sent|Message for arun210782@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +206|eCAS_MutualFunds@manipaltechnologies.com|arun2107balaji@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:26|87.82 KB|Sent|Message for arun2107balaji@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +207|eCAS_MutualFunds@manipaltechnologies.com|arun21194@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:26|52.7 KB|Sent|Message for arun21194@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +208|eCAS_MutualFunds@manipaltechnologies.com|arun21626@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:26|54.76 KB|Sent|Message for arun21626@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +209|eCAS_MutualFunds@manipaltechnologies.com|arun2192000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:26|86.45 KB|Sent|Message for arun2192000@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +210|eCAS_MutualFunds@manipaltechnologies.com|arun22.ak25@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:27|58.16 KB|Sent|Message for arun22.ak25@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +211|eCAS_MutualFunds@manipaltechnologies.com|arun22.shrivastava@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:27|52.31 KB|Sent|Message for arun22.shrivastava@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +212|eCAS_MutualFunds@manipaltechnologies.com|arun22111972@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:27|59.15 KB|Sent|Message for arun22111972@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +213|eCAS_MutualFunds@manipaltechnologies.com|arun224001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:27|56.62 KB|Sent|Message for arun224001@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +214|eCAS_MutualFunds@manipaltechnologies.com|arun2270@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:27|68.21 KB|Sent|Message for arun2270@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +215|eCAS_MutualFunds@manipaltechnologies.com|arun2282@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|63.72 KB|Sent|Message for arun2282@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +216|eCAS_MutualFunds@manipaltechnologies.com|arun22atr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|58.03 KB|Sent|Message for arun22atr@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +217|eCAS_MutualFunds@manipaltechnologies.com|arun22dhawan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|52.11 KB|Sent|Message for arun22dhawan@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +218|eCAS_MutualFunds@manipaltechnologies.com|arun23.mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|57.72 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun23.mishra@gmail.com to suppression list because delivery has failed 18 times. +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +219|eCAS_MutualFunds@manipaltechnologies.com|arun23004@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:28|54.98 KB|Sent|Message for arun23004@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +220|eCAS_MutualFunds@manipaltechnologies.com|arun23031989@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|57.13 KB|Sent|Message for arun23031989@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +221|eCAS_MutualFunds@manipaltechnologies.com|arun2311980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|66.35 KB|Sent|Message for arun2311980@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +222|eCAS_MutualFunds@manipaltechnologies.com|arun23178@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|73.09 KB|Sent|Message for arun23178@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +223|eCAS_MutualFunds@manipaltechnologies.com|arun23587@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|62.39 KB|Sent|Message for arun23587@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +224|eCAS_MutualFunds@manipaltechnologies.com|arun24012@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|52.8 KB|Sent|Message for arun24012@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +225|eCAS_MutualFunds@manipaltechnologies.com|arun2426@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:29|51.96 KB|Sent|Message for arun2426@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +226|eCAS_MutualFunds@manipaltechnologies.com|arun24@hotmail.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:30|49.68 KB|Sent|Message for arun24@hotmail.co.uk accepted by 52.101.68.9:25 (eur.olc.protection.outlook.com) +227|eCAS_MutualFunds@manipaltechnologies.com|arun24kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:30|51.7 KB|Sent|Message for arun24kumar@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +228|eCAS_MutualFunds@manipaltechnologies.com|arun250568@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:30|83.15 KB|Sent|Message for arun250568@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +229|eCAS_MutualFunds@manipaltechnologies.com|arun2511@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:30|53.15 KB|Sent|Message for arun2511@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +230|eCAS_MutualFunds@manipaltechnologies.com|arun252524@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|70.83 KB|Sent|Message for arun252524@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +231|eCAS_MutualFunds@manipaltechnologies.com|arun2559yadav@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|63.93 KB|Sent|Message for arun2559yadav@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +232|eCAS_MutualFunds@manipaltechnologies.com|arun25681@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|77.54 KB|Sent|Message for arun25681@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +233|eCAS_MutualFunds@manipaltechnologies.com|arun2595@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|68.13 KB|Sent|Message for arun2595@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +234|eCAS_MutualFunds@manipaltechnologies.com|arun259919@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|49.37 KB|Sent|Message for arun259919@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +235|eCAS_MutualFunds@manipaltechnologies.com|arun25_solanki@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:31|62.17 KB|Sent|Message for arun25_solanki@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +236|eCAS_MutualFunds@manipaltechnologies.com|arun25mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:32|66.16 KB|Sent|Message for arun25mishra@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +237|eCAS_MutualFunds@manipaltechnologies.com|arun25raghav@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:32|66.84 KB|Sent|Message for arun25raghav@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +238|eCAS_MutualFunds@manipaltechnologies.com|arun25rajan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:32|67.58 KB|Sent|Message for arun25rajan@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +239|eCAS_MutualFunds@manipaltechnologies.com|arun260468@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:32|78.56 KB|Sent|Message for arun260468@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +240|eCAS_MutualFunds@manipaltechnologies.com|arun26111971@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:32|62.04 KB|Sent|Message for arun26111971@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +241|eCAS_MutualFunds@manipaltechnologies.com|arun26121968@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:33|84.56 KB|Sent|Message for arun26121968@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +242|eCAS_MutualFunds@manipaltechnologies.com|arun261401@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:33|51.9 KB|Sent|Message for arun261401@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +243|eCAS_MutualFunds@manipaltechnologies.com|arun26719@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:33|50.72 KB|Sent|Message for arun26719@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +244|eCAS_MutualFunds@manipaltechnologies.com|arun26h@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:33|52.31 KB|Sent|Message for arun26h@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +245|eCAS_MutualFunds@manipaltechnologies.com|arun26mandal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:33|66.81 KB|Sent|Message for arun26mandal@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +246|eCAS_MutualFunds@manipaltechnologies.com|arun27.nit@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:34|64.28 KB|Sent|Message for arun27.nit@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +247|eCAS_MutualFunds@manipaltechnologies.com|arun27111980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:34|54.98 KB|Sent|Message for arun27111980@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +248|eCAS_MutualFunds@manipaltechnologies.com|arun27672@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:34|54.73 KB|Sent|Message for arun27672@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +249|eCAS_MutualFunds@manipaltechnologies.com|arun27feb@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:34|51.52 KB|Sent|Message for arun27feb@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +250|eCAS_MutualFunds@manipaltechnologies.com|arun280267@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:34|68.52 KB|Sent|Message for arun280267@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +251|eCAS_MutualFunds@manipaltechnologies.com|arun280391@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:34|77.44 KB|Sent|Message for arun280391@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +252|eCAS_MutualFunds@manipaltechnologies.com|arun280@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:35|51.91 KB|Sent|Message for arun280@hotmail.com accepted by 52.101.11.11:25 (hotmail-com.olc.protection.outlook.com) +253|eCAS_MutualFunds@manipaltechnologies.com|arun28544@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:35|60.7 KB|Sent|Message for arun28544@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +254|eCAS_MutualFunds@manipaltechnologies.com|arun28vns@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:35|51.95 KB|Sent|Message for arun28vns@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +255|eCAS_MutualFunds@manipaltechnologies.com|arun29.kale@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:35|59.94 KB|Sent|Message for arun29.kale@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +256|eCAS_MutualFunds@manipaltechnologies.com|arun2911@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:35|62.51 KB|Sent|Message for arun2911@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +257|eCAS_MutualFunds@manipaltechnologies.com|arun29583181@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:36|52.25 KB|Sent|Message for arun29583181@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +258|eCAS_MutualFunds@manipaltechnologies.com|arun29719@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:36|79.35 KB|Sent|Message for arun29719@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +259|eCAS_MutualFunds@manipaltechnologies.com|arun2kamble@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:36|65.98 KB|Sent|Message for arun2kamble@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +260|eCAS_MutualFunds@manipaltechnologies.com|arun2kiki@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:36|51.02 KB|Sent|Message for arun2kiki@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +261|eCAS_MutualFunds@manipaltechnologies.com|arun2nura@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:36|69.29 KB|Sent|Message for arun2nura@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +262|eCAS_MutualFunds@manipaltechnologies.com|arun2prinku@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:37|61.68 KB|Sent|Message for arun2prinku@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +263|eCAS_MutualFunds@manipaltechnologies.com|arun2prinku@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:37|66.06 KB|Sent|Message for arun2prinku@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +264|eCAS_MutualFunds@manipaltechnologies.com|arun2ragav@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:37|53.91 KB|Sent|Message for arun2ragav@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +265|eCAS_MutualFunds@manipaltechnologies.com|arun2raju@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:37|50.93 KB|Sent|Message for arun2raju@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +266|eCAS_MutualFunds@manipaltechnologies.com|arun2sweet@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:37|63.31 KB|Sent|Message for arun2sweet@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +267|eCAS_MutualFunds@manipaltechnologies.com|arun30031985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:37|52.01 KB|Sent|Message for arun30031985@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +268|eCAS_MutualFunds@manipaltechnologies.com|arun30945@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:38|69.88 KB|Sent|Message for arun30945@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +269|eCAS_MutualFunds@manipaltechnologies.com|arun310585@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:38|57.58 KB|Sent|Message for arun310585@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +270|eCAS_MutualFunds@manipaltechnologies.com|arun3107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:38|53.58 KB|Sent|Message for arun3107@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +271|eCAS_MutualFunds@manipaltechnologies.com|arun311090@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:38|82.21 KB|Sent|Message for arun311090@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +272|eCAS_MutualFunds@manipaltechnologies.com|arun311975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:38|65.44 KB|Sent|Message for arun311975@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +273|eCAS_MutualFunds@manipaltechnologies.com|arun31380@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:39|69.21 KB|Sent|Message for arun31380@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +274|eCAS_MutualFunds@manipaltechnologies.com|arun3215124@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:39|63.31 KB|Sent|Message for arun3215124@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +275|eCAS_MutualFunds@manipaltechnologies.com|arun328mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:39|63.86 KB|Sent|Message for arun328mishra@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +276|eCAS_MutualFunds@manipaltechnologies.com|arun3331@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:39|56.12 KB|Sent|Message for arun3331@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +277|eCAS_MutualFunds@manipaltechnologies.com|arun3378@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:39|56.1 KB|Sent|Message for arun3378@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +278|eCAS_MutualFunds@manipaltechnologies.com|arun3480@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:39|66.04 KB|Sent|Message for arun3480@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +279|eCAS_MutualFunds@manipaltechnologies.com|arun3554@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|66.3 KB|Sent|Message for arun3554@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +280|eCAS_MutualFunds@manipaltechnologies.com|arun3554@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|69.3 KB|Sent|Message for arun3554@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta5.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +281|eCAS_MutualFunds@manipaltechnologies.com|arun3611apache@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|78.11 KB|Sent|Message for arun3611apache@yahoo.com accepted by 67.195.228.106:25 (mta5.am0.yahoodns.net) +282|eCAS_MutualFunds@manipaltechnologies.com|arun378sharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|65.97 KB|Sent|Message for arun378sharma@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +283|eCAS_MutualFunds@manipaltechnologies.com|arun378sharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:40|71.61 KB|Sent|Message for arun378sharma@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +284|eCAS_MutualFunds@manipaltechnologies.com|arun384@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:41|61.4 KB|Sent|Message for arun384@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +285|eCAS_MutualFunds@manipaltechnologies.com|arun387@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:41|54.44 KB|Sent|Message for arun387@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +286|eCAS_MutualFunds@manipaltechnologies.com|arun39225@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:41|60.27 KB|Sent|Message for arun39225@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +287|eCAS_MutualFunds@manipaltechnologies.com|arun3_bls@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:41|72.96 KB|Sent|Message for arun3_bls@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +288|eCAS_MutualFunds@manipaltechnologies.com|arun3ds@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:41|80.56 KB|Sent|Message for arun3ds@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +289|eCAS_MutualFunds@manipaltechnologies.com|arun3jun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:42|72.33 KB|Sent|Message for arun3jun@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +290|eCAS_MutualFunds@manipaltechnologies.com|arun3mishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:42|51.89 KB|Sent|Message for arun3mishra@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +291|eCAS_MutualFunds@manipaltechnologies.com|arun4.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:42|59.83 KB|Sent|Message for arun4.ac@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +292|eCAS_MutualFunds@manipaltechnologies.com|arun404@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:42|57.43 KB|Sent|Message for arun404@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +293|eCAS_MutualFunds@manipaltechnologies.com|arun40757@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:42|66.58 KB|Sent|Message for arun40757@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +294|eCAS_MutualFunds@manipaltechnologies.com|arun4101@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|59.19 KB|Sent|Message for arun4101@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +295|eCAS_MutualFunds@manipaltechnologies.com|arun41658@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|65.59 KB|Sent|Message for arun41658@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +296|eCAS_MutualFunds@manipaltechnologies.com|arun4278@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|56.7 KB|Sent|Message for arun4278@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +297|eCAS_MutualFunds@manipaltechnologies.com|arun427in@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|60.46 KB|Sent|Message for arun427in@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +298|eCAS_MutualFunds@manipaltechnologies.com|arun4312@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:43|61.98 KB|Sent|Message for arun4312@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +299|eCAS_MutualFunds@manipaltechnologies.com|arun44135@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:44|55.65 KB|Sent|Message for arun44135@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +300|eCAS_MutualFunds@manipaltechnologies.com|arun4426m@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:44|66.88 KB|Sent|Message for arun4426m@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +301|eCAS_MutualFunds@manipaltechnologies.com|arun44das@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:44|54.53 KB|Sent|Message for arun44das@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +302|eCAS_MutualFunds@manipaltechnologies.com|arun4624@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:44|83.95 KB|Sent|Message for arun4624@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +303|eCAS_MutualFunds@manipaltechnologies.com|arun4629@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:44|69.77 KB|Sent|Message for arun4629@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +304|eCAS_MutualFunds@manipaltechnologies.com|arun464@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:45|74.56 KB|Sent|Message for arun464@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +305|eCAS_MutualFunds@manipaltechnologies.com|arun49120@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:45|66.92 KB|Sent|Message for arun49120@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +306|eCAS_MutualFunds@manipaltechnologies.com|arun4baghel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:45|51.63 KB|Sent|Message for arun4baghel@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +307|eCAS_MutualFunds@manipaltechnologies.com|arun4barcouncil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:45|105.81 KB|Sent|Message for arun4barcouncil@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +308|eCAS_MutualFunds@manipaltechnologies.com|arun4cusat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:45|57.35 KB|Sent|Message for arun4cusat@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +309|eCAS_MutualFunds@manipaltechnologies.com|arun4rakhi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:45|59.82 KB|Sent|Message for arun4rakhi@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +310|eCAS_MutualFunds@manipaltechnologies.com|arun4rakhi@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.13 KB|Sent|Message for arun4rakhi@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +311|eCAS_MutualFunds@manipaltechnologies.com|arun4run@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|48.69 KB|Sent|Message for arun4run@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +312|eCAS_MutualFunds@manipaltechnologies.com|arun4scaff@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|65.81 KB|Sent|Message for arun4scaff@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta7.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta7.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta7.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta6.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta6.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta6.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +313|eCAS_MutualFunds@manipaltechnologies.com|arun4sharma@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|64.0 KB|Sent|Message for arun4sharma@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +314|eCAS_MutualFunds@manipaltechnologies.com|arun4soure@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:46|57.13 KB|Sent|Message for arun4soure@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +315|eCAS_MutualFunds@manipaltechnologies.com|arun502.naik@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:47|79.71 KB|Sent|Message for arun502.naik@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +316|eCAS_MutualFunds@manipaltechnologies.com|arun511948@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:47|62.77 KB|Sent|Message for arun511948@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +317|eCAS_MutualFunds@manipaltechnologies.com|arun51gayatri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:47|72.05 KB|Sent|Message for arun51gayatri@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +318|eCAS_MutualFunds@manipaltechnologies.com|arun521036@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:47|54.81 KB|Sent|Message for arun521036@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +319|eCAS_MutualFunds@manipaltechnologies.com|arun521925@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:47|56.67 KB|Sent|Message for arun521925@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +320|eCAS_MutualFunds@manipaltechnologies.com|arun5276@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:48|56.06 KB|Sent|Message for arun5276@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +321|eCAS_MutualFunds@manipaltechnologies.com|arun53455@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:48|64.57 KB|Sent|Message for arun53455@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +322|eCAS_MutualFunds@manipaltechnologies.com|arun53455@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:48|61.11 KB|Sent|Message for arun53455@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +323|eCAS_MutualFunds@manipaltechnologies.com|arun53455@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:48|64.77 KB|Sent|Message for arun53455@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +324|eCAS_MutualFunds@manipaltechnologies.com|arun54@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:48|63.53 KB|Sent|Message for arun54@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +325|eCAS_MutualFunds@manipaltechnologies.com|arun55.mech@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:48|50.67 KB|Sent|Message for arun55.mech@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +326|eCAS_MutualFunds@manipaltechnologies.com|arun550@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|58.77 KB|Sent|Message for arun550@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +327|eCAS_MutualFunds@manipaltechnologies.com|arun553296984494@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|57.17 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +328|eCAS_MutualFunds@manipaltechnologies.com|arun5550993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|49.31 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun5550993@gmail.com to suppression list because delivery has failed 18 times. +329|eCAS_MutualFunds@manipaltechnologies.com|arun55825@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|57.23 KB|Sent|Message for arun55825@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +330|eCAS_MutualFunds@manipaltechnologies.com|arun56147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:49|56.66 KB|Sent|Message for arun56147@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +331|eCAS_MutualFunds@manipaltechnologies.com|arun5616kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:50|63.4 KB|Sent|Message for arun5616kumar@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +332|eCAS_MutualFunds@manipaltechnologies.com|arun564@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:50|52.36 KB|Sent|Message for arun564@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +333|eCAS_MutualFunds@manipaltechnologies.com|arun56saxena@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:50|65.95 KB|Sent|Message for arun56saxena@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +334|eCAS_MutualFunds@manipaltechnologies.com|arun56shukla@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:50|55.51 KB|Sent|Message for arun56shukla@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +335|eCAS_MutualFunds@manipaltechnologies.com|arun57@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:50|55.12 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +336|eCAS_MutualFunds@manipaltechnologies.com|arun58183@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:50|68.03 KB|Sent|Message for arun58183@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +337|eCAS_MutualFunds@manipaltechnologies.com|arun5944@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:51|71.74 KB|Sent|Message for arun5944@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +338|eCAS_MutualFunds@manipaltechnologies.com|arun599singh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:51|59.88 KB|Sent|Message for arun599singh@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +339|eCAS_MutualFunds@manipaltechnologies.com|arun599singh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:51|68.24 KB|Sent|Message for arun599singh@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +340|eCAS_MutualFunds@manipaltechnologies.com|arun59m@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:51|53.49 KB|Sent|Message for arun59m@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +341|eCAS_MutualFunds@manipaltechnologies.com|arun5verma5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:51|66.9 KB|Sent|Message for arun5verma5@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +342|eCAS_MutualFunds@manipaltechnologies.com|arun6031@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:52|71.07 KB|Sent|Message for arun6031@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +343|eCAS_MutualFunds@manipaltechnologies.com|arun60823@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:52|55.49 KB|Sent|Message for arun60823@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +344|eCAS_MutualFunds@manipaltechnologies.com|arun61054@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:52|54.9 KB|Sent|Message for arun61054@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +345|eCAS_MutualFunds@manipaltechnologies.com|arun62426@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:52|50.65 KB|Sent|Message for arun62426@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +346|eCAS_MutualFunds@manipaltechnologies.com|arun6314@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:52|52.18 KB|Sent|Message for arun6314@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +347|eCAS_MutualFunds@manipaltechnologies.com|arun63520@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:53|69.25 KB|Sent|Message for arun63520@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +348|eCAS_MutualFunds@manipaltechnologies.com|arun63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:53|52.02 KB|Sent|Message for arun63@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +349|eCAS_MutualFunds@manipaltechnologies.com|arun63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:53|63.08 KB|Sent|Message for arun63@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +350|eCAS_MutualFunds@manipaltechnologies.com|arun63manju@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:53|51.31 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +351|eCAS_MutualFunds@manipaltechnologies.com|arun64.daga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:53|61.45 KB|Sent|Message for arun64.daga@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +352|eCAS_MutualFunds@manipaltechnologies.com|arun64125@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:53|51.73 KB|Sent|Message for arun64125@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +353|eCAS_MutualFunds@manipaltechnologies.com|arun66127@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.63 KB|Sent|Message for arun66127@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +354|eCAS_MutualFunds@manipaltechnologies.com|arun662002@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|63.7 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun662002@indiatimes.com to suppression list because delivery has failed 18 times. +355|eCAS_MutualFunds@manipaltechnologies.com|arun6632002@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|68.73 KB|Sent|Message for arun6632002@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +356|eCAS_MutualFunds@manipaltechnologies.com|arun6666patel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|67.6 KB|Sent|Message for arun6666patel@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +357|eCAS_MutualFunds@manipaltechnologies.com|arun671980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|67.8 KB|Sent|Message for arun671980@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +358|eCAS_MutualFunds@manipaltechnologies.com|arun671980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:54|57.58 KB|Sent|Message for arun671980@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +359|eCAS_MutualFunds@manipaltechnologies.com|arun676@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:55|51.7 KB|Sent|Message for arun676@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +360|eCAS_MutualFunds@manipaltechnologies.com|arun67@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:55|64.49 KB|Sent|Message for arun67@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +361|eCAS_MutualFunds@manipaltechnologies.com|arun67@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:55|63.0 KB|Sent|Message for arun67@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +362|eCAS_MutualFunds@manipaltechnologies.com|arun67kamboj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:55|49.95 KB|Sent|Message for arun67kamboj@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +363|eCAS_MutualFunds@manipaltechnologies.com|arun67prabha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:55|53.19 KB|Sent|Message for arun67prabha@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +364|eCAS_MutualFunds@manipaltechnologies.com|arun68016@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:56|55.54 KB|Sent|Message for arun68016@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +365|eCAS_MutualFunds@manipaltechnologies.com|arun681@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:56|62.04 KB|Sent|Message for arun681@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +366|eCAS_MutualFunds@manipaltechnologies.com|arun681@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:56|50.36 KB|Sent|Message for arun681@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +367|eCAS_MutualFunds@manipaltechnologies.com|arun68kr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:56|48.92 KB|Sent|Message for arun68kr@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +368|eCAS_MutualFunds@manipaltechnologies.com|arun695628@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:56|53.82 KB|Sent|Message for arun695628@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +369|eCAS_MutualFunds@manipaltechnologies.com|arun6sensharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:56|53.58 KB|Sent|Message for arun6sensharma@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +370|eCAS_MutualFunds@manipaltechnologies.com|arun7079281431@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:57|54.96 KB|Sent|Message for arun7079281431@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +371|eCAS_MutualFunds@manipaltechnologies.com|arun70ksn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:57|56.97 KB|Sent|Message for arun70ksn@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +372|eCAS_MutualFunds@manipaltechnologies.com|arun7105b@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:57|55.2 KB|Sent|Message for arun7105b@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +373|eCAS_MutualFunds@manipaltechnologies.com|arun71984@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:57|56.06 KB|Sent|Message for arun71984@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +374|eCAS_MutualFunds@manipaltechnologies.com|arun7269@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:57|62.21 KB|Sent|Message for arun7269@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +375|eCAS_MutualFunds@manipaltechnologies.com|arun72sharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:58|88.49 KB|Sent|Message for arun72sharma@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +376|eCAS_MutualFunds@manipaltechnologies.com|arun7376485179@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:58|53.85 KB|Sent|Message for arun7376485179@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +377|eCAS_MutualFunds@manipaltechnologies.com|arun7378@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:58|70.97 KB|Sent|Message for arun7378@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +378|eCAS_MutualFunds@manipaltechnologies.com|arun74.sanju@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:58|67.15 KB|Sent|Message for arun74.sanju@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +379|eCAS_MutualFunds@manipaltechnologies.com|arun7488198402@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:58|55.0 KB|Sent|Message for arun7488198402@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +380|eCAS_MutualFunds@manipaltechnologies.com|arun7488525985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:58|63.58 KB|Sent|Message for arun7488525985@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +381|eCAS_MutualFunds@manipaltechnologies.com|arun7488@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:59|53.61 KB|Sent|Message for arun7488@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +382|eCAS_MutualFunds@manipaltechnologies.com|arun7524054993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:59|51.69 KB|Sent|Message for arun7524054993@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +383|eCAS_MutualFunds@manipaltechnologies.com|arun7527310@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:59|54.68 KB|Sent|Message for arun7527310@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +384|eCAS_MutualFunds@manipaltechnologies.com|arun7566@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:59|60.28 KB|Sent|Message for arun7566@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +385|eCAS_MutualFunds@manipaltechnologies.com|arun758896@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|09:59:59|55.75 KB|Sent|Message for arun758896@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +386|eCAS_MutualFunds@manipaltechnologies.com|arun75kgupta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:00|69.84 KB|Sent|Message for arun75kgupta@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +387|eCAS_MutualFunds@manipaltechnologies.com|arun762002kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:00|54.12 KB|Sent|Message for arun762002kumar@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +388|eCAS_MutualFunds@manipaltechnologies.com|arun771641@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:00|62.03 KB|Sent|Message for arun771641@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +389|eCAS_MutualFunds@manipaltechnologies.com|arun774481@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:00|67.71 KB|Sent|Message for arun774481@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +390|eCAS_MutualFunds@manipaltechnologies.com|arun775495@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:00|56.55 KB|Sent|Message for arun775495@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +391|eCAS_MutualFunds@manipaltechnologies.com|arun77813@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:00|71.51 KB|Sent|Message for arun77813@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +392|eCAS_MutualFunds@manipaltechnologies.com|arun779569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|52.41 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun779569@gmail.com to suppression list because delivery has failed 18 times. +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +393|eCAS_MutualFunds@manipaltechnologies.com|arun77george@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|67.56 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun77george@gmail.com to suppression list because delivery has failed 18 times. +394|eCAS_MutualFunds@manipaltechnologies.com|arun78457@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|56.46 KB|Sent|Message for arun78457@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +395|eCAS_MutualFunds@manipaltechnologies.com|arun78728@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:01|80.5 KB|Sent|Message for arun78728@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +396|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|54.14 KB|Sent|Message for arun787874@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +397|eCAS_MutualFunds@manipaltechnologies.com|arun787874@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|59.81 KB|Sent|Message for arun787874@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +398|eCAS_MutualFunds@manipaltechnologies.com|arun789pandey@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|77.86 KB|Sent|Message for arun789pandey@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +399|eCAS_MutualFunds@manipaltechnologies.com|arun78halder@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.28 KB|Sent|Message for arun78halder@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +400|eCAS_MutualFunds@manipaltechnologies.com|arun78par@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:02|57.54 KB|Sent|Message for arun78par@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +401|eCAS_MutualFunds@manipaltechnologies.com|arun79.2009@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:03|75.03 KB|Sent|Message for arun79.2009@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +402|eCAS_MutualFunds@manipaltechnologies.com|arun79.dabur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:03|67.13 KB|Sent|Message for arun79.dabur@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +403|eCAS_MutualFunds@manipaltechnologies.com|arun79.kanpur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:03|58.08 KB|Sent|Message for arun79.kanpur@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +404|eCAS_MutualFunds@manipaltechnologies.com|arun79.netake@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:03|105.86 KB|Sent|Message for arun79.netake@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +405|eCAS_MutualFunds@manipaltechnologies.com|arun79688@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:03|67.24 KB|Sent|Message for arun79688@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +406|eCAS_MutualFunds@manipaltechnologies.com|arun79pkt@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:03|81.99 KB|Sent|Message for arun79pkt@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +407|eCAS_MutualFunds@manipaltechnologies.com|arun79yadav@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:04|70.64 KB|Sent|Message for arun79yadav@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +408|eCAS_MutualFunds@manipaltechnologies.com|arun7baby@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:04|57.39 KB|Sent|Message for arun7baby@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +409|eCAS_MutualFunds@manipaltechnologies.com|arun7deep@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:04|57.71 KB|Sent|Message for arun7deep@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +410|eCAS_MutualFunds@manipaltechnologies.com|arun7goel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:04|60.56 KB|Sent|Message for arun7goel@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +411|eCAS_MutualFunds@manipaltechnologies.com|arun7saha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:04|64.18 KB|Sent|Message for arun7saha@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +412|eCAS_MutualFunds@manipaltechnologies.com|arun806@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:05|56.89 KB|Sent|Message for arun806@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +413|eCAS_MutualFunds@manipaltechnologies.com|arun81589@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:05|59.03 KB|Sent|Message for arun81589@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +414|eCAS_MutualFunds@manipaltechnologies.com|arun8185@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:05|52.38 KB|Sent|Message for arun8185@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +415|eCAS_MutualFunds@manipaltechnologies.com|arun81mazumdar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:05|50.85 KB|Sent|Message for arun81mazumdar@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +416|eCAS_MutualFunds@manipaltechnologies.com|arun826.jp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:05|51.46 KB|Sent|Message for arun826.jp@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +417|eCAS_MutualFunds@manipaltechnologies.com|arun828404@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:05|57.34 KB|Sent|Message for arun828404@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +418|eCAS_MutualFunds@manipaltechnologies.com|arun82abraham@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:06|59.48 KB|Sent|Message for arun82abraham@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +419|eCAS_MutualFunds@manipaltechnologies.com|arun82kumar1982@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:06|63.47 KB|Sent|Message for arun82kumar1982@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +420|eCAS_MutualFunds@manipaltechnologies.com|arun82kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:06|89.47 KB|Sent|Message for arun82kumar@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +421|eCAS_MutualFunds@manipaltechnologies.com|arun84.mace@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:06|64.89 KB|Sent|Message for arun84.mace@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +422|eCAS_MutualFunds@manipaltechnologies.com|arun843318@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:06|49.45 KB|Sent|Message for arun843318@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +423|eCAS_MutualFunds@manipaltechnologies.com|arun84441@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:07|61.12 KB|Sent|Message for arun84441@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +424|eCAS_MutualFunds@manipaltechnologies.com|arun84919@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:07|58.81 KB|Sent|Message for arun84919@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +425|eCAS_MutualFunds@manipaltechnologies.com|arun85.wins@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:07|76.25 KB|Sent|Message for arun85.wins@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +426|eCAS_MutualFunds@manipaltechnologies.com|arun8522@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:07|65.86 KB|Sent|Message for arun8522@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +427|eCAS_MutualFunds@manipaltechnologies.com|arun85pathak@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:07|52.34 KB|Sent|Message for arun85pathak@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +428|eCAS_MutualFunds@manipaltechnologies.com|arun85sk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:07|48.87 KB|Sent|Message for arun85sk@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +429|eCAS_MutualFunds@manipaltechnologies.com|arun86169@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:08|47.95 KB|Sent|Message for arun86169@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +430|eCAS_MutualFunds@manipaltechnologies.com|arun8674@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:08|62.71 KB|Sent|Message for arun8674@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +431|eCAS_MutualFunds@manipaltechnologies.com|arun8674@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:08|56.79 KB|Sent|Message for arun8674@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +432|eCAS_MutualFunds@manipaltechnologies.com|arun86may@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:08|53.76 KB|Sent|Message for arun86may@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +433|eCAS_MutualFunds@manipaltechnologies.com|arun86t@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:09|68.45 KB|Sent|Message for arun86t@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +434|eCAS_MutualFunds@manipaltechnologies.com|arun86tvm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:09|50.09 KB|Sent|Message for arun86tvm@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +435|eCAS_MutualFunds@manipaltechnologies.com|arun87.kas14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:09|52.7 KB|Sent|Message for arun87.kas14@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +436|eCAS_MutualFunds@manipaltechnologies.com|arun87br@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:09|48.87 KB|Sent|Message for arun87br@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +437|eCAS_MutualFunds@manipaltechnologies.com|arun87ckrbrty@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:09|67.23 KB|Sent|Message for arun87ckrbrty@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +438|eCAS_MutualFunds@manipaltechnologies.com|arun88.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:10|52.27 KB|Sent|Message for arun88.ac@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +439|eCAS_MutualFunds@manipaltechnologies.com|arun88.pi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:10|56.53 KB|Sent|Message for arun88.pi@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +440|eCAS_MutualFunds@manipaltechnologies.com|arun88.pi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:10|66.47 KB|Sent|Message for arun88.pi@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +441|eCAS_MutualFunds@manipaltechnologies.com|arun88140@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:10|63.9 KB|Sent|Message for arun88140@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +442|eCAS_MutualFunds@manipaltechnologies.com|arun88298@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:10|92.42 KB|Sent|Message for arun88298@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +443|eCAS_MutualFunds@manipaltechnologies.com|arun8858571313@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:10|48.46 KB|Sent|Message for arun8858571313@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +444|eCAS_MutualFunds@manipaltechnologies.com|arun887.sharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|67.86 KB|Sent|Message for arun887.sharma@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +445|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|66.07 KB|Sent|Message for arun8887m@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +446|eCAS_MutualFunds@manipaltechnologies.com|arun8887m@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|73.59 KB|Sent|Message for arun8887m@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +447|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar150@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|60.38 KB|Sent|Message for arun88kumar150@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +448|eCAS_MutualFunds@manipaltechnologies.com|arun88kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:11|52.27 KB|Sent|Message for arun88kumar@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +449|eCAS_MutualFunds@manipaltechnologies.com|arun892089@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:12|49.07 KB|Sent|Message for arun892089@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +450|eCAS_MutualFunds@manipaltechnologies.com|arun8960415243@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:12|77.74 KB|Sent|Message for arun8960415243@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +451|eCAS_MutualFunds@manipaltechnologies.com|arun89gupta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:12|66.92 KB|Sent|Message for arun89gupta@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +452|eCAS_MutualFunds@manipaltechnologies.com|arun901200@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:12|55.58 KB|Sent|Message for arun901200@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +453|eCAS_MutualFunds@manipaltechnologies.com|arun9028@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:13|61.73 KB|Sent|Message for arun9028@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +454|eCAS_MutualFunds@manipaltechnologies.com|arun90902004@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:13|71.86 KB|Sent|Message for arun90902004@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +455|eCAS_MutualFunds@manipaltechnologies.com|arun9094830243@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:13|53.32 KB|Sent|Message for arun9094830243@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +456|eCAS_MutualFunds@manipaltechnologies.com|arun90thamizh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:13|61.22 KB|Sent|Message for arun90thamizh@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +457|eCAS_MutualFunds@manipaltechnologies.com|arun910866@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:13|57.02 KB|Sent|Message for arun910866@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +458|eCAS_MutualFunds@manipaltechnologies.com|arun9140221080@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:13|67.38 KB|Sent|Message for arun9140221080@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +459|eCAS_MutualFunds@manipaltechnologies.com|arun918@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:14|53.49 KB|Sent|Message for arun918@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +460|eCAS_MutualFunds@manipaltechnologies.com|arun9265571919@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:14|48.35 KB|Sent|Message for arun9265571919@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +461|eCAS_MutualFunds@manipaltechnologies.com|arun934kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:14|49.56 KB|Sent|Message for arun934kumar@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +462|eCAS_MutualFunds@manipaltechnologies.com|arun939@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:14|49.26 KB|Sent|Message for arun939@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +463|eCAS_MutualFunds@manipaltechnologies.com|arun941042ku@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:14|66.81 KB|Sent|Message for arun941042ku@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +464|eCAS_MutualFunds@manipaltechnologies.com|arun9415367692@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:14|69.38 KB|Sent|Message for arun9415367692@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +465|eCAS_MutualFunds@manipaltechnologies.com|arun9415367692@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:15|69.8 KB|Sent|Message for arun9415367692@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +466|eCAS_MutualFunds@manipaltechnologies.com|arun9450548@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:15|70.92 KB|Sent|Message for arun9450548@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +467|eCAS_MutualFunds@manipaltechnologies.com|arun94716@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:15|61.24 KB|Sent|Message for arun94716@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +468|eCAS_MutualFunds@manipaltechnologies.com|arun94yadav@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:15|73.46 KB|Sent|Message for arun94yadav@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +469|eCAS_MutualFunds@manipaltechnologies.com|arun9565823941@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:15|51.88 KB|Sent|Message for arun9565823941@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +470|eCAS_MutualFunds@manipaltechnologies.com|arun9575@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:16|67.17 KB|Sent|Message for arun9575@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +471|eCAS_MutualFunds@manipaltechnologies.com|arun95872@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:16|65.05 KB|Sent|Message for arun95872@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +472|eCAS_MutualFunds@manipaltechnologies.com|arun96198@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:16|54.13 KB|Sent|Message for arun96198@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +473|eCAS_MutualFunds@manipaltechnologies.com|arun9632@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:16|75.33 KB|Sent|Message for arun9632@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +474|eCAS_MutualFunds@manipaltechnologies.com|arun965@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:16|51.71 KB|Sent|Message for arun965@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +475|eCAS_MutualFunds@manipaltechnologies.com|arun9695344294@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:16|62.5 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +476|eCAS_MutualFunds@manipaltechnologies.com|arun96975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:17|55.07 KB|Sent|Message for arun96975@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +477|eCAS_MutualFunds@manipaltechnologies.com|arun9712231744@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:17|62.48 KB|Sent|Message for arun9712231744@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +478|eCAS_MutualFunds@manipaltechnologies.com|arun9724767804@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:17|51.6 KB|Sent|Message for arun9724767804@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +479|eCAS_MutualFunds@manipaltechnologies.com|arun9731@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:17|55.67 KB|Sent|Message for arun9731@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +480|eCAS_MutualFunds@manipaltechnologies.com|arun9741156952@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:17|54.04 KB|Sent|Message for arun9741156952@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +481|eCAS_MutualFunds@manipaltechnologies.com|arun97755@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:17|73.09 KB|Sent|Message for arun97755@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +482|eCAS_MutualFunds@manipaltechnologies.com|arun979091630@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:18|64.11 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +483|eCAS_MutualFunds@manipaltechnologies.com|arun9795712020@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:18|53.73 KB|Sent|Message for arun9795712020@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +484|eCAS_MutualFunds@manipaltechnologies.com|arun9823569101@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:18|62.56 KB|Sent|Message for arun9823569101@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +485|eCAS_MutualFunds@manipaltechnologies.com|arun98837@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:18|70.04 KB|Sent|Message for arun98837@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +486|eCAS_MutualFunds@manipaltechnologies.com|arun9895431964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:18|52.0 KB|Sent|Message for arun9895431964@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +487|eCAS_MutualFunds@manipaltechnologies.com|arun9935869289@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|52.12 KB|Sent|Message for arun9935869289@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.155.25:25 (mx02.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.56.9.31:25 (mx01.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.56.9.31:25 (mx01.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.152.5:25 (mx02.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.155.25:25 (mx02.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.156.30:25 (mx01.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.155.25:25 (mx02.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.152.5:25 (mx02.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.42.251.62:25 (mx01.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.56.9.31:25 (mx01.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.155.25:25 (mx01.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.56.9.31:25 (mx02.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.155.25:25 (mx02.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.42.251.62:25 (mx02.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.42.251.62:25 (mx02.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.156.30:25 (mx01.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.155.25:25 (mx01.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.155.25:25 (mx02.mail.icloud.com) +488|eCAS_MutualFunds@manipaltechnologies.com|arun9936@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|50.81 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun9936@icloud.com to suppression list because delivery has failed 18 times. +489|eCAS_MutualFunds@manipaltechnologies.com|arun9939112670@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|51.65 KB|Sent|Message for arun9939112670@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +490|eCAS_MutualFunds@manipaltechnologies.com|arun995624@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|51.63 KB|Sent|Message for arun995624@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +491|eCAS_MutualFunds@manipaltechnologies.com|arun9971372374@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|58.51 KB|Sent|Message for arun9971372374@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +492|eCAS_MutualFunds@manipaltechnologies.com|arun999@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:19|64.98 KB|Sent|Message for arun999@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +493|eCAS_MutualFunds@manipaltechnologies.com|arun999star@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|64.47 KB|Sent|Message for arun999star@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +494|eCAS_MutualFunds@manipaltechnologies.com|arun9m@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|99.04 KB|Sent|Message for arun9m@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +495|eCAS_MutualFunds@manipaltechnologies.com|arun@ahanexim.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|78.85 KB|Sent|Message for arun@ahanexim.com accepted by 74.125.68.27:25 (aspmx.l.google.com) +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|No SMTP servers were available for enverdeworld.com. No hosts to try. +496|eCAS_MutualFunds@manipaltechnologies.com|arun@enverdeworld.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|55.31 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun@enverdeworld.com to suppression list because delivery has failed 18 times. +497|eCAS_MutualFunds@manipaltechnologies.com|arun@foodfeastpune.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|65.22 KB|Sent|Message for arun@foodfeastpune.com accepted by 192.185.138.191:25 (foodfeastpune.com) +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.98.38.4:25 (mx.glorieuxinfosystem.com.cust.b.hostedemail.com) +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.98.38.4:25 (mx.glorieuxinfosystem.com.cust.b.hostedemail.com) +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.98.38.4:25 (mx.glorieuxinfosystem.com.cust.b.hostedemail.com) +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.98.38.4:25 (mx.glorieuxinfosystem.com.cust.b.hostedemail.com) +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.98.38.4:25 (mx.glorieuxinfosystem.com.cust.b.hostedemail.com) +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.98.38.4:25 (mx.glorieuxinfosystem.com.cust.b.hostedemail.com) +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.98.38.4:25 (mx.glorieuxinfosystem.com.cust.b.hostedemail.com) +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.98.38.4:25 (mx.glorieuxinfosystem.com.cust.b.hostedemail.com) +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.98.38.4:25 (mx.glorieuxinfosystem.com.cust.b.hostedemail.com) +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|No SMTP servers were available for glorieuxinfosystem.com. Tried mx.glorieuxinfosystem.com.cust.b.hostedemail.com. +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|No SMTP servers were available for glorieuxinfosystem.com. Tried mx.glorieuxinfosystem.com.cust.b.hostedemail.com. +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|No SMTP servers were available for glorieuxinfosystem.com. Tried mx.glorieuxinfosystem.com.cust.b.hostedemail.com. +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|No SMTP servers were available for glorieuxinfosystem.com. Tried mx.glorieuxinfosystem.com.cust.b.hostedemail.com. +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|No SMTP servers were available for glorieuxinfosystem.com. Tried mx.glorieuxinfosystem.com.cust.b.hostedemail.com. +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|No SMTP servers were available for glorieuxinfosystem.com. Tried mx.glorieuxinfosystem.com.cust.b.hostedemail.com. +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|No SMTP servers were available for glorieuxinfosystem.com. Tried mx.glorieuxinfosystem.com.cust.b.hostedemail.com. +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|No SMTP servers were available for glorieuxinfosystem.com. Tried mx.glorieuxinfosystem.com.cust.b.hostedemail.com. +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|No SMTP servers were available for glorieuxinfosystem.com. Tried mx.glorieuxinfosystem.com.cust.b.hostedemail.com. +498|eCAS_MutualFunds@manipaltechnologies.com|arun@glorieuxinfosystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:20|60.56 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun@glorieuxinfosystem.com to suppression list because delivery has failed 18 times. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|No SMTP servers were available for gnu.org.in. Tried mail.gnu.org.in. +499|eCAS_MutualFunds@manipaltechnologies.com|arun@gnu.org.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|77.8 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun@gnu.org.in to suppression list because delivery has failed 18 times. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|No SMTP servers were available for hasnaelectrical.com. No hosts to try. +500|eCAS_MutualFunds@manipaltechnologies.com|arun@hasnaelectrical.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|50.17 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun@hasnaelectrical.com to suppression list because delivery has failed 18 times. +501|eCAS_MutualFunds@manipaltechnologies.com|arun@hebbur.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|51.93 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.75:25 (mx-biz.mail.am0.yahoodns.net) +501|eCAS_MutualFunds@manipaltechnologies.com|arun@hebbur.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|51.93 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.83:25 (mx-biz.mail.am0.yahoodns.net) +501|eCAS_MutualFunds@manipaltechnologies.com|arun@hebbur.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|51.93 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.83:25 (mx-biz.mail.am0.yahoodns.net) +501|eCAS_MutualFunds@manipaltechnologies.com|arun@hebbur.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|51.93 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.75:25 (mx-biz.mail.am0.yahoodns.net) +501|eCAS_MutualFunds@manipaltechnologies.com|arun@hebbur.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|51.93 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.83:25 (mx-biz.mail.am0.yahoodns.net) +501|eCAS_MutualFunds@manipaltechnologies.com|arun@hebbur.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|51.93 KB|Sent|Message for arun@hebbur.com accepted by 67.195.204.83:25 (mx-biz.mail.am0.yahoodns.net) +502|eCAS_MutualFunds@manipaltechnologies.com|arun@hydrodynesystem.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|52.16 KB|Sent|Message for arun@hydrodynesystem.com accepted by 74.125.200.27:25 (aspmx.l.google.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +503|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:21|76.57 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun@ketan.jaika.com to suppression list because delivery has failed 18 times. +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Temporary SMTP delivery error when sending to 114.143.218.230:25 (ketan.jaika.com) +504|eCAS_MutualFunds@manipaltechnologies.com|arun@ketan.jaika.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|63.04 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun@ketan.jaika.com to suppression list because delivery has failed 18 times. +505|eCAS_MutualFunds@manipaltechnologies.com|arun@key-circle.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|61.15 KB|HardFail|Permanent SMTP delivery error when sending to 172.253.118.26:25 (aspmx.l.google.com) +506|eCAS_MutualFunds@manipaltechnologies.com|arun@magnecomp.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|52.8 KB|Sent|Message for arun@magnecomp.com accepted by 209.222.82.253:25 (d156278a.ess.barracudanetworks.com) +507|eCAS_MutualFunds@manipaltechnologies.com|arun@mahfin.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|51.89 KB|Sent|Message for arun@mahfin.com accepted by 59.160.52.19:25 (mx3.mahfin.com) +508|eCAS_MutualFunds@manipaltechnologies.com|arun@mail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|48.33 KB|HardFail|Permanent SMTP delivery error when sending to 74.208.5.22:25 (mx01.mail.com) +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|No SMTP servers were available for rarushospitalityservices.com. No hosts to try. +509|eCAS_MutualFunds@manipaltechnologies.com|arun@rarushospitalityservices.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:22|50.77 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun@rarushospitalityservices.com to suppression list because delivery has failed 18 times. +510|eCAS_MutualFunds@manipaltechnologies.com|arun@sachan.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|60.74 KB|Sent|Message for arun@sachan.co.in accepted by 172.253.118.26:25 (aspmx.l.google.com) +511|eCAS_MutualFunds@manipaltechnologies.com|arun@sbjsr.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|54.05 KB|Sent|Message for arun@sbjsr.in accepted by 172.253.118.26:25 (aspmx.l.google.com) +512|eCAS_MutualFunds@manipaltechnologies.com|arun@sbjsr.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|54.21 KB|Sent|Message for arun@sbjsr.in accepted by 172.253.118.26:25 (aspmx.l.google.com) +513|eCAS_MutualFunds@manipaltechnologies.com|arun@tauruscomm.net|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|61.53 KB|Sent|Message for arun@tauruscomm.net accepted by 119.252.155.15:25 (mail.rediffmailpro.com) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +514|eCAS_MutualFunds@manipaltechnologies.com|arun_100_2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:23|67.63 KB|Sent|Message for arun_100_2001@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +515|eCAS_MutualFunds@manipaltechnologies.com|arun_11170@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|51.33 KB|Sent|Message for arun_11170@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +516|eCAS_MutualFunds@manipaltechnologies.com|arun_119@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|75.55 KB|Sent|Message for arun_119@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +517|eCAS_MutualFunds@manipaltechnologies.com|arun_11sharma@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|53.36 KB|Sent|Message for arun_11sharma@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +518|eCAS_MutualFunds@manipaltechnologies.com|arun_1214@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|52.27 KB|Sent|Message for arun_1214@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +519|eCAS_MutualFunds@manipaltechnologies.com|arun_2092003@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|54.65 KB|Sent|Message for arun_2092003@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +520|eCAS_MutualFunds@manipaltechnologies.com|arun_2712@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:24|51.99 KB|Sent|Message for arun_2712@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +521|eCAS_MutualFunds@manipaltechnologies.com|arun_2712@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|58.47 KB|Sent|Message for arun_2712@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +522|eCAS_MutualFunds@manipaltechnologies.com|arun_3387@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|58.2 KB|Sent|Message for arun_3387@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +523|eCAS_MutualFunds@manipaltechnologies.com|arun_51273@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|77.97 KB|Sent|Message for arun_51273@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +524|eCAS_MutualFunds@manipaltechnologies.com|arun_54@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|50.26 KB|Sent|Message for arun_54@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +525|eCAS_MutualFunds@manipaltechnologies.com|arun_961@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|64.73 KB|Sent|Message for arun_961@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +526|eCAS_MutualFunds@manipaltechnologies.com|arun_abraham20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:25|68.15 KB|Sent|Message for arun_abraham20@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +527|eCAS_MutualFunds@manipaltechnologies.com|arun_agk@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|57.68 KB|Sent|Temporary SMTP delivery error when sending to 188.125.72.73:25 (mx-eu.mail.am0.yahoodns.net) +527|eCAS_MutualFunds@manipaltechnologies.com|arun_agk@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|57.68 KB|Sent|Temporary SMTP delivery error when sending to 188.125.72.73:25 (mx-eu.mail.am0.yahoodns.net) +527|eCAS_MutualFunds@manipaltechnologies.com|arun_agk@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|57.68 KB|Sent|Temporary SMTP delivery error when sending to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +527|eCAS_MutualFunds@manipaltechnologies.com|arun_agk@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|57.68 KB|Sent|Temporary SMTP delivery error when sending to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +527|eCAS_MutualFunds@manipaltechnologies.com|arun_agk@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|57.68 KB|Sent|Temporary SMTP delivery error when sending to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +527|eCAS_MutualFunds@manipaltechnologies.com|arun_agk@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|57.68 KB|Sent|Message for arun_agk@yahoo.co.uk accepted by 188.125.72.73:25 (mx-eu.mail.am0.yahoodns.net) +528|eCAS_MutualFunds@manipaltechnologies.com|arun_agrahari@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|75.15 KB|Sent|Message for arun_agrahari@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +529|eCAS_MutualFunds@manipaltechnologies.com|arun_ainary@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|52.24 KB|Sent|Message for arun_ainary@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +530|eCAS_MutualFunds@manipaltechnologies.com|arun_ak3333@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|51.53 KB|HardFail|Permanent SMTP delivery error when sending to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +531|eCAS_MutualFunds@manipaltechnologies.com|arun_ak91@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|58.69 KB|Sent|Message for arun_ak91@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +532|eCAS_MutualFunds@manipaltechnologies.com|arun_aldure@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:26|56.6 KB|Sent|Message for arun_aldure@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +533|eCAS_MutualFunds@manipaltechnologies.com|arun_amalraj13@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|52.61 KB|Sent|Message for arun_amalraj13@yahoo.com accepted by 67.195.228.94:25 (mta6.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +534|eCAS_MutualFunds@manipaltechnologies.com|arun_annyamalla@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|57.71 KB|Sent|Message for arun_annyamalla@yahoo.com accepted by 67.195.228.94:25 (mta6.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +535|eCAS_MutualFunds@manipaltechnologies.com|arun_apec@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|54.47 KB|Sent|Message for arun_apec@yahoo.com accepted by 67.195.228.94:25 (mta6.am0.yahoodns.net) +536|eCAS_MutualFunds@manipaltechnologies.com|arun_avi69@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|76.47 KB|Sent|Message for arun_avi69@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +537|eCAS_MutualFunds@manipaltechnologies.com|arun_azam@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:27|63.21 KB|Sent|Message for arun_azam@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +538|eCAS_MutualFunds@manipaltechnologies.com|arun_b18@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.91 KB|Sent|Message for arun_b18@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +539|eCAS_MutualFunds@manipaltechnologies.com|arun_b_menon@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|56.37 KB|Sent|Message for arun_b_menon@yahoo.com accepted by 67.195.228.94:25 (mta6.am0.yahoodns.net) +540|eCAS_MutualFunds@manipaltechnologies.com|arun_bala@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|57.63 KB|Sent|Message for arun_bala@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +541|eCAS_MutualFunds@manipaltechnologies.com|arun_barc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|66.13 KB|Sent|Message for arun_barc@yahoo.com accepted by 67.195.228.94:25 (mta6.am0.yahoodns.net) +542|eCAS_MutualFunds@manipaltechnologies.com|arun_baskar@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|59.82 KB|Sent|Message for arun_baskar@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +543|eCAS_MutualFunds@manipaltechnologies.com|arun_beckham_7@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:28|49.11 KB|Sent|Message for arun_beckham_7@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +544|eCAS_MutualFunds@manipaltechnologies.com|arun_behera28@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|60.42 KB|Sent|Message for arun_behera28@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +545|eCAS_MutualFunds@manipaltechnologies.com|arun_besu_civil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|62.78 KB|Sent|Message for arun_besu_civil@yahoo.com accepted by 67.195.228.94:25 (mta6.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +546|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|74.01 KB|Sent|Message for arun_bh_in@yahoo.com accepted by 67.195.228.94:25 (mta6.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +547|eCAS_MutualFunds@manipaltechnologies.com|arun_bh_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.69 KB|Sent|Message for arun_bh_in@yahoo.com accepted by 67.195.228.94:25 (mta6.am0.yahoodns.net) +548|eCAS_MutualFunds@manipaltechnologies.com|arun_biophysics@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.84 KB|Sent|Message for arun_biophysics@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +549|eCAS_MutualFunds@manipaltechnologies.com|arun_bordoloi@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:29|57.46 KB|Sent|Message for arun_bordoloi@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +550|eCAS_MutualFunds@manipaltechnologies.com|arun_bro@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|66.9 KB|Sent|Message for arun_bro@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +551|eCAS_MutualFunds@manipaltechnologies.com|arun_bscity@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|59.09 KB|Sent|Message for arun_bscity@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +552|eCAS_MutualFunds@manipaltechnologies.com|arun_btext@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|63.2 KB|Sent|Message for arun_btext@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +553|eCAS_MutualFunds@manipaltechnologies.com|arun_c_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|92.81 KB|Sent|Message for arun_c_2000@yahoo.com accepted by 67.195.228.94:25 (mta6.am0.yahoodns.net) +554|eCAS_MutualFunds@manipaltechnologies.com|arun_chandok2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:30|53.18 KB|Sent|Message for arun_chandok2006@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +555|eCAS_MutualFunds@manipaltechnologies.com|arun_chandra2006@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|50.75 KB|Sent|Message for arun_chandra2006@yahoo.com accepted by 67.195.228.94:25 (mta6.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +556|eCAS_MutualFunds@manipaltechnologies.com|arun_chatterjee@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|60.48 KB|Sent|Message for arun_chatterjee@yahoo.com accepted by 67.195.228.94:25 (mta6.am0.yahoodns.net) +557|eCAS_MutualFunds@manipaltechnologies.com|arun_chatto@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|73.95 KB|Sent|Message for arun_chatto@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +558|eCAS_MutualFunds@manipaltechnologies.com|arun_chin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|51.45 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +559|eCAS_MutualFunds@manipaltechnologies.com|arun_chodankar56@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:31|56.98 KB|Sent|Message for arun_chodankar56@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +560|eCAS_MutualFunds@manipaltechnologies.com|arun_choudhary@sbi.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|63.98 KB|Sent|Message for arun_choudhary@sbi.co.in accepted by 52.101.145.2:25 (sbi-co-in.mail.protection.outlook.com) +561|eCAS_MutualFunds@manipaltechnologies.com|arun_citmech@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|72.58 KB|Sent|Message for arun_citmech@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +562|eCAS_MutualFunds@manipaltechnologies.com|arun_d_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|64.2 KB|Sent|Message for arun_d_73@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +563|eCAS_MutualFunds@manipaltechnologies.com|arun_danger14@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|53.67 KB|Sent|Message for arun_danger14@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +564|eCAS_MutualFunds@manipaltechnologies.com|arun_das265@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|51.85 KB|Sent|Message for arun_das265@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +565|eCAS_MutualFunds@manipaltechnologies.com|arun_dasms@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:32|55.77 KB|Sent|Message for arun_dasms@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +566|eCAS_MutualFunds@manipaltechnologies.com|arun_dixit40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.86 KB|Sent|Message for arun_dixit40@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +567|eCAS_MutualFunds@manipaltechnologies.com|arun_dubey131@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.55 KB|Sent|Message for arun_dubey131@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +568|eCAS_MutualFunds@manipaltechnologies.com|arun_ecr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|53.71 KB|Sent|Message for arun_ecr@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +569|eCAS_MutualFunds@manipaltechnologies.com|arun_eid2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|87.87 KB|Sent|Message for arun_eid2003@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +570|eCAS_MutualFunds@manipaltechnologies.com|arun_electricals@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|48.8 KB|Sent|Message for arun_electricals@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +571|eCAS_MutualFunds@manipaltechnologies.com|arun_engg_ind@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:33|51.36 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|An internal error occurred while sending this message. This message will be retried automatically. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|No SMTP servers were available for yahoomail.com. No hosts to try. +572|eCAS_MutualFunds@manipaltechnologies.com|arun_eserve1979@yahoomail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|51.93 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun_eserve1979@yahoomail.com to suppression list because delivery has failed 18 times. +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +573|eCAS_MutualFunds@manipaltechnologies.com|arun_firewings2006@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.12 KB|Sent|Message for arun_firewings2006@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +574|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|89.55 KB|Sent|Message for arun_gandhi1959@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +575|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|58.43 KB|Sent|Message for arun_gandhi1959@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +576|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|53.38 KB|Sent|Message for arun_gandhi1959@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +577|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi1959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:34|84.24 KB|Sent|Message for arun_gandhi1959@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +578|eCAS_MutualFunds@manipaltechnologies.com|arun_gandhi959@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.35 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +579|eCAS_MutualFunds@manipaltechnologies.com|arun_ganesh2005@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|50.9 KB|Sent|Message for arun_ganesh2005@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +580|eCAS_MutualFunds@manipaltechnologies.com|arun_ghosh1@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|55.85 KB|Sent|Message for arun_ghosh1@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +581|eCAS_MutualFunds@manipaltechnologies.com|arun_gmenon@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|59.78 KB|Sent|Message for arun_gmenon@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +582|eCAS_MutualFunds@manipaltechnologies.com|arun_gop5@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|76.62 KB|Sent|Message for arun_gop5@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx01.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx01.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.57.152.5:25 (mx02.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.57.156.30:25 (mx01.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.57.152.5:25 (mx02.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.42.251.62:25 (mx01.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx01.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx01.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx02.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.42.251.62:25 (mx02.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.42.251.62:25 (mx02.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.57.156.30:25 (mx01.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx01.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +583|eCAS_MutualFunds@manipaltechnologies.com|arun_gopal@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:35|58.9 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun_gopal@icloud.com to suppression list because delivery has failed 18 times. +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +584|eCAS_MutualFunds@manipaltechnologies.com|arun_gotra@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|79.39 KB|Sent|Message for arun_gotra@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +585|eCAS_MutualFunds@manipaltechnologies.com|arun_gpai@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|67.83 KB|Sent|Message for arun_gpai@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +586|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta2002@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|83.0 KB|Sent|Message for arun_gupta2002@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +587|eCAS_MutualFunds@manipaltechnologies.com|arun_gupta7610@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|78.45 KB|Sent|Message for arun_gupta7610@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +588|eCAS_MutualFunds@manipaltechnologies.com|arun_gusain@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:36|71.66 KB|Sent|Message for arun_gusain@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +589|eCAS_MutualFunds@manipaltechnologies.com|arun_h07@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|49.15 KB|Sent|Message for arun_h07@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +590|eCAS_MutualFunds@manipaltechnologies.com|arun_iamr@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|54.74 KB|Sent|Message for arun_iamr@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +591|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|59.67 KB|Sent|Message for arun_igtr@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +592|eCAS_MutualFunds@manipaltechnologies.com|arun_igtr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|57.53 KB|Sent|Message for arun_igtr@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +593|eCAS_MutualFunds@manipaltechnologies.com|arun_jagana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|82.0 KB|Sent|Message for arun_jagana@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +594|eCAS_MutualFunds@manipaltechnologies.com|arun_jaibharat@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:37|63.42 KB|Sent|Message for arun_jaibharat@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +595|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|56.86 KB|Sent|Message for arun_jain133@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +596|eCAS_MutualFunds@manipaltechnologies.com|arun_jain133@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|54.09 KB|Sent|Message for arun_jain133@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +597|eCAS_MutualFunds@manipaltechnologies.com|arun_janya12@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|51.69 KB|Sent|Message for arun_janya12@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +598|eCAS_MutualFunds@manipaltechnologies.com|arun_jbspl@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|58.33 KB|Sent|Message for arun_jbspl@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +599|eCAS_MutualFunds@manipaltechnologies.com|arun_jg@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|63.68 KB|Sent|Message for arun_jg@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +600|eCAS_MutualFunds@manipaltechnologies.com|arun_k17@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:38|52.28 KB|Sent|Message for arun_k17@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +601|eCAS_MutualFunds@manipaltechnologies.com|arun_kaish@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|51.98 KB|Sent|Message for arun_kaish@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +602|eCAS_MutualFunds@manipaltechnologies.com|arun_kakade@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|49.79 KB|Sent|Message for arun_kakade@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +603|eCAS_MutualFunds@manipaltechnologies.com|arun_kakodkar@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|76.06 KB|Sent|Message for arun_kakodkar@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +604|eCAS_MutualFunds@manipaltechnologies.com|arun_kakodkar@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|73.09 KB|Sent|Temporary SMTP delivery error when sending to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +604|eCAS_MutualFunds@manipaltechnologies.com|arun_kakodkar@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|73.09 KB|Sent|Message for arun_kakodkar@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +605|eCAS_MutualFunds@manipaltechnologies.com|arun_kamin@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:39|52.81 KB|Sent|Message for arun_kamin@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +606|eCAS_MutualFunds@manipaltechnologies.com|arun_kannambra@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|61.56 KB|Sent|Message for arun_kannambra@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +607|eCAS_MutualFunds@manipaltechnologies.com|arun_kap51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|55.3 KB|Sent|Message for arun_kap51@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +608|eCAS_MutualFunds@manipaltechnologies.com|arun_kaushal@rocketmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|52.41 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +608|eCAS_MutualFunds@manipaltechnologies.com|arun_kaushal@rocketmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|52.41 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta6.am0.yahoodns.net) +608|eCAS_MutualFunds@manipaltechnologies.com|arun_kaushal@rocketmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|52.41 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta7.am0.yahoodns.net) +608|eCAS_MutualFunds@manipaltechnologies.com|arun_kaushal@rocketmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|52.41 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +608|eCAS_MutualFunds@manipaltechnologies.com|arun_kaushal@rocketmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|52.41 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta5.am0.yahoodns.net) +608|eCAS_MutualFunds@manipaltechnologies.com|arun_kaushal@rocketmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|52.41 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta6.am0.yahoodns.net) +608|eCAS_MutualFunds@manipaltechnologies.com|arun_kaushal@rocketmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|52.41 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta6.am0.yahoodns.net) +608|eCAS_MutualFunds@manipaltechnologies.com|arun_kaushal@rocketmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|52.41 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +608|eCAS_MutualFunds@manipaltechnologies.com|arun_kaushal@rocketmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|52.41 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta7.am0.yahoodns.net) +608|eCAS_MutualFunds@manipaltechnologies.com|arun_kaushal@rocketmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|52.41 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta7.am0.yahoodns.net) +608|eCAS_MutualFunds@manipaltechnologies.com|arun_kaushal@rocketmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|52.41 KB|Sent|Message for arun_kaushal@rocketmail.com accepted by 67.195.204.72:25 (mta6.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +609|eCAS_MutualFunds@manipaltechnologies.com|arun_kbv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|83.53 KB|Sent|Message for arun_kbv@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +610|eCAS_MutualFunds@manipaltechnologies.com|arun_kekatpure@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|57.08 KB|Sent|Temporary SMTP delivery error when sending to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +610|eCAS_MutualFunds@manipaltechnologies.com|arun_kekatpure@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|57.08 KB|Sent|Message for arun_kekatpure@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +611|eCAS_MutualFunds@manipaltechnologies.com|arun_khale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:40|69.91 KB|Sent|Message for arun_khale@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +612|eCAS_MutualFunds@manipaltechnologies.com|arun_king35@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|58.58 KB|Sent|Message for arun_king35@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +613|eCAS_MutualFunds@manipaltechnologies.com|arun_kodai20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|52.5 KB|Sent|Message for arun_kodai20@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +614|eCAS_MutualFunds@manipaltechnologies.com|arun_kohli@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|50.53 KB|Sent|Message for arun_kohli@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +615|eCAS_MutualFunds@manipaltechnologies.com|arun_kotia@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|59.64 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +615|eCAS_MutualFunds@manipaltechnologies.com|arun_kotia@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|59.64 KB|Sent|Message for arun_kotia@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +616|eCAS_MutualFunds@manipaltechnologies.com|arun_kotiya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|61.58 KB|Sent|Message for arun_kotiya@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +617|eCAS_MutualFunds@manipaltechnologies.com|arun_kr_ghosh@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:41|48.97 KB|Sent|Message for arun_kr_ghosh@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +618|eCAS_MutualFunds@manipaltechnologies.com|arun_ksingh@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|67.59 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +618|eCAS_MutualFunds@manipaltechnologies.com|arun_ksingh@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|67.59 KB|Sent|Message for arun_ksingh@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +619|eCAS_MutualFunds@manipaltechnologies.com|arun_ktr2008@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.51 KB|Sent|Message for arun_ktr2008@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +620|eCAS_MutualFunds@manipaltechnologies.com|arun_kum_pat@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|61.22 KB|Sent|Message for arun_kum_pat@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +621|eCAS_MutualFunds@manipaltechnologies.com|arun_kumaarr@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|96.08 KB|Sent|Message for arun_kumaarr@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +622|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:42|56.74 KB|Sent|Message for arun_kumar1960@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +623|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar200809@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.99 KB|Sent|Message for arun_kumar200809@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +624|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar2986@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|50.9 KB|Sent|Message for arun_kumar2986@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +625|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar455@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|53.88 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +625|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar455@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|53.88 KB|Sent|Message for arun_kumar455@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +626|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar57@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|66.72 KB|Sent|Message for arun_kumar57@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +627|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar786700@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|58.19 KB|Sent|Message for arun_kumar786700@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +628|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar907@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:43|51.18 KB|Sent|Message for arun_kumar907@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +629|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|67.9 KB|Sent|Message for arun_kumar_1709@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +630|eCAS_MutualFunds@manipaltechnologies.com|arun_kumar_1709@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|68.61 KB|Sent|Message for arun_kumar_1709@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta6.am0.yahoodns.net) +631|eCAS_MutualFunds@manipaltechnologies.com|arun_kummar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|61.38 KB|Sent|Message for arun_kummar@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +632|eCAS_MutualFunds@manipaltechnologies.com|arun_lamba40@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|64.95 KB|Sent|Message for arun_lamba40@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +633|eCAS_MutualFunds@manipaltechnologies.com|arun_ln@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|63.08 KB|Sent|Message for arun_ln@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +634|eCAS_MutualFunds@manipaltechnologies.com|arun_madan500@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:44|65.72 KB|Sent|Message for arun_madan500@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +635|eCAS_MutualFunds@manipaltechnologies.com|arun_majhi_04@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|56.09 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +635|eCAS_MutualFunds@manipaltechnologies.com|arun_majhi_04@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|56.09 KB|Sent|Message for arun_majhi_04@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +636|eCAS_MutualFunds@manipaltechnologies.com|arun_mehrotra2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|67.63 KB|Sent|Message for arun_mehrotra2000@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +637|eCAS_MutualFunds@manipaltechnologies.com|arun_merugu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|48.67 KB|Sent|Message for arun_merugu@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +638|eCAS_MutualFunds@manipaltechnologies.com|arun_mittal831@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|61.69 KB|Sent|Message for arun_mittal831@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +639|eCAS_MutualFunds@manipaltechnologies.com|arun_moral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|55.08 KB|Sent|Message for arun_moral@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +640|eCAS_MutualFunds@manipaltechnologies.com|arun_motors@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:45|52.59 KB|Sent|Message for arun_motors@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +641|eCAS_MutualFunds@manipaltechnologies.com|arun_nab@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|56.41 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +641|eCAS_MutualFunds@manipaltechnologies.com|arun_nab@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|56.41 KB|Sent|Message for arun_nab@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +642|eCAS_MutualFunds@manipaltechnologies.com|arun_nath2005@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|67.55 KB|Sent|Message for arun_nath2005@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +643|eCAS_MutualFunds@manipaltechnologies.com|arun_patel1977@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|75.99 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +643|eCAS_MutualFunds@manipaltechnologies.com|arun_patel1977@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|75.99 KB|Sent|Message for arun_patel1977@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +644|eCAS_MutualFunds@manipaltechnologies.com|arun_phy_tripathy@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|78.08 KB|Sent|Message for arun_phy_tripathy@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +645|eCAS_MutualFunds@manipaltechnologies.com|arun_pragya@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|62.46 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +645|eCAS_MutualFunds@manipaltechnologies.com|arun_pragya@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:46|62.46 KB|Sent|Message for arun_pragya@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +646|eCAS_MutualFunds@manipaltechnologies.com|arun_pras82@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|57.76 KB|Sent|Message for arun_pras82@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +647|eCAS_MutualFunds@manipaltechnologies.com|arun_prasad23@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|58.95 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +647|eCAS_MutualFunds@manipaltechnologies.com|arun_prasad23@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|58.95 KB|Sent|Message for arun_prasad23@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +648|eCAS_MutualFunds@manipaltechnologies.com|arun_prema04@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|72.45 KB|Sent|Message for arun_prema04@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +649|eCAS_MutualFunds@manipaltechnologies.com|arun_prince53@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|67.05 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +649|eCAS_MutualFunds@manipaltechnologies.com|arun_prince53@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|67.05 KB|Sent|Message for arun_prince53@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +650|eCAS_MutualFunds@manipaltechnologies.com|arun_raheja@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:47|50.79 KB|Sent|Message for arun_raheja@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +651|eCAS_MutualFunds@manipaltechnologies.com|arun_rbt@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|79.56 KB|Sent|Message for arun_rbt@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +652|eCAS_MutualFunds@manipaltechnologies.com|arun_reeta@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|59.16 KB|Sent|An error occurred while sending the message to 188.125.72.73:25 (mx-eu.mail.am0.yahoodns.net) +652|eCAS_MutualFunds@manipaltechnologies.com|arun_reeta@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|59.16 KB|Sent|An error occurred while sending the message to 188.125.72.73:25 (mx-eu.mail.am0.yahoodns.net) +652|eCAS_MutualFunds@manipaltechnologies.com|arun_reeta@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|59.16 KB|Sent|An error occurred while sending the message to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +652|eCAS_MutualFunds@manipaltechnologies.com|arun_reeta@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|59.16 KB|Sent|An error occurred while sending the message to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +652|eCAS_MutualFunds@manipaltechnologies.com|arun_reeta@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|59.16 KB|Sent|An error occurred while sending the message to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +652|eCAS_MutualFunds@manipaltechnologies.com|arun_reeta@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|59.16 KB|Sent|Message for arun_reeta@yahoo.co.uk accepted by 188.125.72.73:25 (mx-eu.mail.am0.yahoodns.net) +653|eCAS_MutualFunds@manipaltechnologies.com|arun_rewa2010@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|59.23 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +653|eCAS_MutualFunds@manipaltechnologies.com|arun_rewa2010@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|59.23 KB|Sent|Message for arun_rewa2010@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +654|eCAS_MutualFunds@manipaltechnologies.com|arun_rohilla@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|58.5 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +654|eCAS_MutualFunds@manipaltechnologies.com|arun_rohilla@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|58.5 KB|Sent|Message for arun_rohilla@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +655|eCAS_MutualFunds@manipaltechnologies.com|arun_s05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|70.14 KB|Sent|Message for arun_s05@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +656|eCAS_MutualFunds@manipaltechnologies.com|arun_sachandra@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:48|52.17 KB|Sent|Message for arun_sachandra@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +657|eCAS_MutualFunds@manipaltechnologies.com|arun_salem@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|53.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta5.am0.yahoodns.net) +657|eCAS_MutualFunds@manipaltechnologies.com|arun_salem@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|53.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta6.am0.yahoodns.net) +657|eCAS_MutualFunds@manipaltechnologies.com|arun_salem@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|53.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta5.am0.yahoodns.net) +657|eCAS_MutualFunds@manipaltechnologies.com|arun_salem@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|53.15 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +657|eCAS_MutualFunds@manipaltechnologies.com|arun_salem@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|53.15 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +657|eCAS_MutualFunds@manipaltechnologies.com|arun_salem@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|53.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta6.am0.yahoodns.net) +657|eCAS_MutualFunds@manipaltechnologies.com|arun_salem@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|53.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +657|eCAS_MutualFunds@manipaltechnologies.com|arun_salem@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|53.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +657|eCAS_MutualFunds@manipaltechnologies.com|arun_salem@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|53.15 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +657|eCAS_MutualFunds@manipaltechnologies.com|arun_salem@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|53.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta7.am0.yahoodns.net) +657|eCAS_MutualFunds@manipaltechnologies.com|arun_salem@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|53.15 KB|Sent|Message for arun_salem@ymail.com accepted by 67.195.228.111:25 (mta6.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +658|eCAS_MutualFunds@manipaltechnologies.com|arun_sanghi59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|79.49 KB|Sent|Message for arun_sanghi59@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +659|eCAS_MutualFunds@manipaltechnologies.com|arun_sarkar9999@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|70.73 KB|Sent|Message for arun_sarkar9999@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +660|eCAS_MutualFunds@manipaltechnologies.com|arun_sathyasai@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|52.3 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +661|eCAS_MutualFunds@manipaltechnologies.com|arun_saxena1976@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|50.86 KB|Sent|Message for arun_saxena1976@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +662|eCAS_MutualFunds@manipaltechnologies.com|arun_scorpion2@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|59.12 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +662|eCAS_MutualFunds@manipaltechnologies.com|arun_scorpion2@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:49|59.12 KB|Sent|Message for arun_scorpion2@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +663|eCAS_MutualFunds@manipaltechnologies.com|arun_sdv@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.47 KB|Sent|Message for arun_sdv@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +664|eCAS_MutualFunds@manipaltechnologies.com|arun_shankar05@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|90.87 KB|Sent|Message for arun_shankar05@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +665|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma1313@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|67.5 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +665|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma1313@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|67.5 KB|Sent|Message for arun_sharma1313@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +666|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma704@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|64.24 KB|Sent|Message for arun_sharma704@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +667|eCAS_MutualFunds@manipaltechnologies.com|arun_sharma76@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|53.61 KB|Sent|Message for arun_sharma76@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +668|eCAS_MutualFunds@manipaltechnologies.com|arun_shrvstv@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|78.17 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +668|eCAS_MutualFunds@manipaltechnologies.com|arun_shrvstv@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:50|78.17 KB|Sent|Message for arun_shrvstv@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +669|eCAS_MutualFunds@manipaltechnologies.com|arun_silvax@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|64.97 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +669|eCAS_MutualFunds@manipaltechnologies.com|arun_silvax@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|64.97 KB|Sent|Message for arun_silvax@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +670|eCAS_MutualFunds@manipaltechnologies.com|arun_sinha81@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.61 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +670|eCAS_MutualFunds@manipaltechnologies.com|arun_sinha81@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.61 KB|Sent|Message for arun_sinha81@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +671|eCAS_MutualFunds@manipaltechnologies.com|arun_sk74@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|54.74 KB|Sent|Message for arun_sk74@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +672|eCAS_MutualFunds@manipaltechnologies.com|arun_sondhi@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|53.08 KB|Sent|Message for arun_sondhi@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +673|eCAS_MutualFunds@manipaltechnologies.com|arun_sr555@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:51|73.84 KB|Sent|Message for arun_sr555@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +674|eCAS_MutualFunds@manipaltechnologies.com|arun_sreeni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|77.6 KB|Sent|Message for arun_sreeni@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +675|eCAS_MutualFunds@manipaltechnologies.com|arun_srivastava67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|55.8 KB|Sent|Message for arun_srivastava67@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta6.am0.yahoodns.net) +676|eCAS_MutualFunds@manipaltechnologies.com|arun_structurer@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|85.38 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun_structurer@yahoo.com to suppression list because delivery has failed 18 times. +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +677|eCAS_MutualFunds@manipaltechnologies.com|arun_sud2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|76.64 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun_sud2000@yahoo.com to suppression list because delivery has failed 18 times. +678|eCAS_MutualFunds@manipaltechnologies.com|arun_tcs@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|69.85 KB|Sent|Message for arun_tcs@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +679|eCAS_MutualFunds@manipaltechnologies.com|arun_tect@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:52|53.42 KB|Sent|Message for arun_tect@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +680|eCAS_MutualFunds@manipaltechnologies.com|arun_thamban@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|48.83 KB|Sent|Message for arun_thamban@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +681|eCAS_MutualFunds@manipaltechnologies.com|arun_tiwari1234@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|69.21 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +681|eCAS_MutualFunds@manipaltechnologies.com|arun_tiwari1234@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|69.21 KB|Sent|Message for arun_tiwari1234@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +682|eCAS_MutualFunds@manipaltechnologies.com|arun_toppo2003@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|84.19 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun_toppo2003@yahoo.com to suppression list because delivery has failed 18 times. +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +683|eCAS_MutualFunds@manipaltechnologies.com|arun_tp007@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|75.76 KB|Sent|Message for arun_tp007@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +684|eCAS_MutualFunds@manipaltechnologies.com|arun_tripathy70@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|79.28 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +684|eCAS_MutualFunds@manipaltechnologies.com|arun_tripathy70@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|79.28 KB|Sent|Message for arun_tripathy70@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +685|eCAS_MutualFunds@manipaltechnologies.com|arun_upadhyay2001@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|62.68 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +685|eCAS_MutualFunds@manipaltechnologies.com|arun_upadhyay2001@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:53|62.68 KB|Sent|Message for arun_upadhyay2001@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +686|eCAS_MutualFunds@manipaltechnologies.com|arun_v1979@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|52.24 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +686|eCAS_MutualFunds@manipaltechnologies.com|arun_v1979@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|52.24 KB|Sent|Message for arun_v1979@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +687|eCAS_MutualFunds@manipaltechnologies.com|arun_v76@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|54.17 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun_v76@yahoo.com to suppression list because delivery has failed 18 times. +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +688|eCAS_MutualFunds@manipaltechnologies.com|arun_v_kulkarni@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|57.39 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arun_v_kulkarni@yahoo.com to suppression list because delivery has failed 18 times. +689|eCAS_MutualFunds@manipaltechnologies.com|arun_victor@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|66.46 KB|HardFail|Permanent SMTP delivery error when sending to 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +690|eCAS_MutualFunds@manipaltechnologies.com|arun_vyas@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|56.68 KB|Sent|Message for arun_vyas@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +691|eCAS_MutualFunds@manipaltechnologies.com|aruna-rao@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:54|64.23 KB|Sent|Message for aruna-rao@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +692|eCAS_MutualFunds@manipaltechnologies.com|aruna.7rupala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:55|50.83 KB|Sent|Message for aruna.7rupala@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +693|eCAS_MutualFunds@manipaltechnologies.com|aruna.988520@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:55|54.89 KB|Sent|Message for aruna.988520@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +694|eCAS_MutualFunds@manipaltechnologies.com|aruna.98@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:55|49.14 KB|Sent|Message for aruna.98@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +695|eCAS_MutualFunds@manipaltechnologies.com|aruna.ababatla@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:55|54.39 KB|Sent|Message for aruna.ababatla@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +696|eCAS_MutualFunds@manipaltechnologies.com|aruna.acchu8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:55|55.65 KB|Sent|Message for aruna.acchu8@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +697|eCAS_MutualFunds@manipaltechnologies.com|aruna.adhithya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:56|69.91 KB|Sent|Message for aruna.adhithya@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +698|eCAS_MutualFunds@manipaltechnologies.com|aruna.adivikolanu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:56|69.95 KB|Sent|Message for aruna.adivikolanu@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +699|eCAS_MutualFunds@manipaltechnologies.com|aruna.ah.06@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:56|51.86 KB|Sent|Message for aruna.ah.06@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +700|eCAS_MutualFunds@manipaltechnologies.com|aruna.akkala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:56|66.58 KB|Sent|Message for aruna.akkala@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +701|eCAS_MutualFunds@manipaltechnologies.com|aruna.ambavkar22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:56|68.4 KB|Sent|Message for aruna.ambavkar22@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +702|eCAS_MutualFunds@manipaltechnologies.com|aruna.anagaani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:56|66.76 KB|Sent|Message for aruna.anagaani@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +703|eCAS_MutualFunds@manipaltechnologies.com|aruna.arora@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|55.82 KB|Sent|Message for aruna.arora@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +704|eCAS_MutualFunds@manipaltechnologies.com|aruna.arun@mithibai.ac.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|61.14 KB|Sent|Message for aruna.arun@mithibai.ac.in accepted by 52.101.132.28:25 (mithibai-ac-in.mail.protection.outlook.com) +705|eCAS_MutualFunds@manipaltechnologies.com|aruna.as.singh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|58.64 KB|Sent|Message for aruna.as.singh@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +706|eCAS_MutualFunds@manipaltechnologies.com|aruna.bagde@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|63.15 KB|Sent|Message for aruna.bagde@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +707|eCAS_MutualFunds@manipaltechnologies.com|aruna.bagul65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|54.45 KB|Sent|Message for aruna.bagul65@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +708|eCAS_MutualFunds@manipaltechnologies.com|aruna.bandam13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:57|77.47 KB|Sent|Message for aruna.bandam13@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +709|eCAS_MutualFunds@manipaltechnologies.com|aruna.barua@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|94.82 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +709|eCAS_MutualFunds@manipaltechnologies.com|aruna.barua@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|94.82 KB|Sent|Message for aruna.barua@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +710|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhadrak@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|68.42 KB|Sent|Message for aruna.bhadrak@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +711|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhalla119@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|57.97 KB|Sent|Message for aruna.bhalla119@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +712|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhangale@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|68.17 KB|Sent|Message for aruna.bhangale@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +713|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhardwaj1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:58|55.94 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna.bhardwaj1980@gmail.com to suppression list because delivery has failed 18 times. +714|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhataria@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:59|75.93 KB|Sent|Message for aruna.bhataria@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +715|eCAS_MutualFunds@manipaltechnologies.com|aruna.bhoi@sbi.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:59|61.63 KB|Sent|Message for aruna.bhoi@sbi.co.in accepted by 52.101.145.2:25 (sbi-co-in.mail.protection.outlook.com) +716|eCAS_MutualFunds@manipaltechnologies.com|aruna.birader@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:59|56.35 KB|Sent|Message for aruna.birader@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +717|eCAS_MutualFunds@manipaltechnologies.com|aruna.bisoi123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:59|71.7 KB|Sent|Message for aruna.bisoi123@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +718|eCAS_MutualFunds@manipaltechnologies.com|aruna.bisoi123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:00:59|66.89 KB|Sent|Message for aruna.bisoi123@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +719|eCAS_MutualFunds@manipaltechnologies.com|aruna.biswal1202@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:00|77.52 KB|Sent|Message for aruna.biswal1202@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +720|eCAS_MutualFunds@manipaltechnologies.com|aruna.biswas30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:00|84.71 KB|Sent|Message for aruna.biswas30@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +721|eCAS_MutualFunds@manipaltechnologies.com|aruna.boricha.ab@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:00|69.37 KB|Sent|Message for aruna.boricha.ab@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +722|eCAS_MutualFunds@manipaltechnologies.com|aruna.bushan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:00|66.34 KB|Sent|Message for aruna.bushan@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +723|eCAS_MutualFunds@manipaltechnologies.com|aruna.chad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:00|55.02 KB|Sent|Message for aruna.chad@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +724|eCAS_MutualFunds@manipaltechnologies.com|aruna.chadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:00|67.64 KB|Sent|Message for aruna.chadaga@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +725|eCAS_MutualFunds@manipaltechnologies.com|aruna.chatterjee.63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:01|70.42 KB|Sent|Message for aruna.chatterjee.63@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +726|eCAS_MutualFunds@manipaltechnologies.com|aruna.chaturvedi66@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:01|58.29 KB|Sent|Message for aruna.chaturvedi66@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +727|eCAS_MutualFunds@manipaltechnologies.com|aruna.chauhan81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:01|76.06 KB|Sent|Message for aruna.chauhan81@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +728|eCAS_MutualFunds@manipaltechnologies.com|aruna.chavan204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:01|69.03 KB|Sent|Message for aruna.chavan204@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +729|eCAS_MutualFunds@manipaltechnologies.com|aruna.chidri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:01|48.96 KB|Sent|Message for aruna.chidri@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +730|eCAS_MutualFunds@manipaltechnologies.com|aruna.chintu1994@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:02|50.16 KB|Sent|Message for aruna.chintu1994@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +731|eCAS_MutualFunds@manipaltechnologies.com|aruna.chowdhury@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:02|57.74 KB|Sent|Message for aruna.chowdhury@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +732|eCAS_MutualFunds@manipaltechnologies.com|aruna.cummins@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:02|70.29 KB|Sent|Message for aruna.cummins@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +733|eCAS_MutualFunds@manipaltechnologies.com|aruna.d.bhide@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:02|53.71 KB|Sent|Message for aruna.d.bhide@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +734|eCAS_MutualFunds@manipaltechnologies.com|aruna.das2000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:02|65.97 KB|Sent|Message for aruna.das2000@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +735|eCAS_MutualFunds@manipaltechnologies.com|aruna.datye@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:03|52.45 KB|Sent|Message for aruna.datye@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +736|eCAS_MutualFunds@manipaltechnologies.com|aruna.daundkar@shoppersstop.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:03|60.38 KB|Sent|Temporary SMTP delivery error when sending to 91.220.42.201:25 (eu-smtp-inbound-1.mimecast.com) +736|eCAS_MutualFunds@manipaltechnologies.com|aruna.daundkar@shoppersstop.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:03|60.38 KB|Sent|Message for aruna.daundkar@shoppersstop.com accepted by 91.220.42.201:25 (eu-smtp-inbound-1.mimecast.com) +737|eCAS_MutualFunds@manipaltechnologies.com|aruna.dawre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:03|69.39 KB|Sent|Message for aruna.dawre@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +738|eCAS_MutualFunds@manipaltechnologies.com|aruna.deb1947@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:03|70.63 KB|Sent|Message for aruna.deb1947@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +739|eCAS_MutualFunds@manipaltechnologies.com|aruna.deb1947@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:03|60.71 KB|Sent|Message for aruna.deb1947@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +740|eCAS_MutualFunds@manipaltechnologies.com|aruna.devarakonda7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|60.96 KB|Sent|Message for aruna.devarakonda7@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +741|eCAS_MutualFunds@manipaltechnologies.com|aruna.dhamnekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|66.21 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna.dhamnekar@gmail.com to suppression list because delivery has failed 18 times. +742|eCAS_MutualFunds@manipaltechnologies.com|aruna.dlu311@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|64.05 KB|Sent|Message for aruna.dlu311@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +743|eCAS_MutualFunds@manipaltechnologies.com|aruna.dosapati24@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|102.29 KB|Sent|Message for aruna.dosapati24@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +744|eCAS_MutualFunds@manipaltechnologies.com|aruna.dubhashi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|52.3 KB|Sent|Message for aruna.dubhashi@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +745|eCAS_MutualFunds@manipaltechnologies.com|aruna.engr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:04|81.08 KB|Sent|Message for aruna.engr@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +746|eCAS_MutualFunds@manipaltechnologies.com|aruna.eshwar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:05|57.78 KB|Sent|Message for aruna.eshwar@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +747|eCAS_MutualFunds@manipaltechnologies.com|aruna.ganekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:05|64.09 KB|Sent|Message for aruna.ganekar@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +748|eCAS_MutualFunds@manipaltechnologies.com|aruna.gauri08@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:05|54.58 KB|Sent|Message for aruna.gauri08@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +749|eCAS_MutualFunds@manipaltechnologies.com|aruna.gawade@djsce.ac.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:05|77.69 KB|Sent|Message for aruna.gawade@djsce.ac.in accepted by 52.101.137.2:25 (djsce-ac-in.mail.protection.outlook.com) +750|eCAS_MutualFunds@manipaltechnologies.com|aruna.godavarik@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:05|50.24 KB|Sent|Message for aruna.godavarik@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +751|eCAS_MutualFunds@manipaltechnologies.com|aruna.gosh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:06|49.45 KB|Sent|Message for aruna.gosh@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +752|eCAS_MutualFunds@manipaltechnologies.com|aruna.gumpu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:06|55.6 KB|Sent|Message for aruna.gumpu@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +753|eCAS_MutualFunds@manipaltechnologies.com|aruna.hsn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:06|58.31 KB|Sent|Message for aruna.hsn@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +754|eCAS_MutualFunds@manipaltechnologies.com|aruna.ipparthi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:06|61.74 KB|Sent|Message for aruna.ipparthi@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +755|eCAS_MutualFunds@manipaltechnologies.com|aruna.ithr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:06|72.04 KB|Sent|Message for aruna.ithr@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +756|eCAS_MutualFunds@manipaltechnologies.com|aruna.iyer862@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:06|56.94 KB|Sent|Message for aruna.iyer862@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +757|eCAS_MutualFunds@manipaltechnologies.com|aruna.jamkar123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:07|71.59 KB|Sent|Message for aruna.jamkar123@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +758|eCAS_MutualFunds@manipaltechnologies.com|aruna.jsankar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:07|67.48 KB|Sent|Message for aruna.jsankar@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +759|eCAS_MutualFunds@manipaltechnologies.com|aruna.k447@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:07|74.0 KB|Sent|Message for aruna.k447@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +760|eCAS_MutualFunds@manipaltechnologies.com|aruna.kakaraparthy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:07|57.0 KB|Sent|Message for aruna.kakaraparthy@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +761|eCAS_MutualFunds@manipaltechnologies.com|aruna.kandekar25@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:07|79.83 KB|Sent|Message for aruna.kandekar25@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +762|eCAS_MutualFunds@manipaltechnologies.com|aruna.kannur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:08|61.52 KB|Sent|Message for aruna.kannur@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +763|eCAS_MutualFunds@manipaltechnologies.com|aruna.kasuganti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:08|56.5 KB|Sent|Message for aruna.kasuganti@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +764|eCAS_MutualFunds@manipaltechnologies.com|aruna.khanna62@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:08|59.61 KB|Sent|Message for aruna.khanna62@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +765|eCAS_MutualFunds@manipaltechnologies.com|aruna.kodavati@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:08|71.65 KB|Sent|Message for aruna.kodavati@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +766|eCAS_MutualFunds@manipaltechnologies.com|aruna.kunda@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:08|57.5 KB|Sent|Message for aruna.kunda@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +767|eCAS_MutualFunds@manipaltechnologies.com|aruna.kuragauala1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:09|49.37 KB|Sent|Message for aruna.kuragauala1983@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +768|eCAS_MutualFunds@manipaltechnologies.com|aruna.lucknow18@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:09|55.97 KB|Sent|Message for aruna.lucknow18@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +769|eCAS_MutualFunds@manipaltechnologies.com|aruna.m.prasad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:09|61.27 KB|Sent|Message for aruna.m.prasad@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +770|eCAS_MutualFunds@manipaltechnologies.com|aruna.maheshwari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:09|81.06 KB|Sent|Message for aruna.maheshwari@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +771|eCAS_MutualFunds@manipaltechnologies.com|aruna.mala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:09|65.03 KB|Sent|Message for aruna.mala@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +772|eCAS_MutualFunds@manipaltechnologies.com|aruna.malempati@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:10|51.82 KB|Sent|Message for aruna.malempati@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +773|eCAS_MutualFunds@manipaltechnologies.com|aruna.malgaonkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:10|54.51 KB|Sent|Message for aruna.malgaonkar@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +774|eCAS_MutualFunds@manipaltechnologies.com|aruna.manali@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:10|66.87 KB|Sent|Message for aruna.manali@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +775|eCAS_MutualFunds@manipaltechnologies.com|aruna.mane1961@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:10|73.07 KB|Sent|Message for aruna.mane1961@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +776|eCAS_MutualFunds@manipaltechnologies.com|aruna.maniam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:10|50.55 KB|Sent|Message for aruna.maniam@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +777|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehrotra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|58.23 KB|Sent|Message for aruna.mehrotra@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +778|eCAS_MutualFunds@manipaltechnologies.com|aruna.mehsana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|71.38 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna.mehsana@gmail.com to suppression list because delivery has failed 18 times. +779|eCAS_MutualFunds@manipaltechnologies.com|aruna.minj09@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|58.33 KB|Sent|Message for aruna.minj09@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +780|eCAS_MutualFunds@manipaltechnologies.com|aruna.mittana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|56.09 KB|Sent|Message for aruna.mittana@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +781|eCAS_MutualFunds@manipaltechnologies.com|aruna.mmalve@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|55.67 KB|Sent|Message for aruna.mmalve@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +782|eCAS_MutualFunds@manipaltechnologies.com|aruna.mohankumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:11|65.54 KB|Sent|Message for aruna.mohankumar@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +783|eCAS_MutualFunds@manipaltechnologies.com|aruna.moto@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:12|57.51 KB|Sent|Message for aruna.moto@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +784|eCAS_MutualFunds@manipaltechnologies.com|aruna.mpharmacy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:12|70.41 KB|Sent|Message for aruna.mpharmacy@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +785|eCAS_MutualFunds@manipaltechnologies.com|aruna.msw2012@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:12|64.69 KB|Sent|Message for aruna.msw2012@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +786|eCAS_MutualFunds@manipaltechnologies.com|aruna.mukherji@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:12|63.07 KB|Sent|Message for aruna.mukherji@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +787|eCAS_MutualFunds@manipaltechnologies.com|aruna.mulay17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:12|57.39 KB|Sent|Message for aruna.mulay17@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +788|eCAS_MutualFunds@manipaltechnologies.com|aruna.nale@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|67.67 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna.nale@yahoo.com to suppression list because delivery has failed 18 times. +789|eCAS_MutualFunds@manipaltechnologies.com|aruna.nali1103@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|52.9 KB|Sent|Message for aruna.nali1103@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +790|eCAS_MutualFunds@manipaltechnologies.com|aruna.narava@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|79.37 KB|Sent|Message for aruna.narava@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +791|eCAS_MutualFunds@manipaltechnologies.com|aruna.palugula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|65.79 KB|Sent|Message for aruna.palugula@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +792|eCAS_MutualFunds@manipaltechnologies.com|aruna.parulekar487@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:13|66.92 KB|Sent|Message for aruna.parulekar487@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +793|eCAS_MutualFunds@manipaltechnologies.com|aruna.pebbili@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|66.72 KB|Sent|Message for aruna.pebbili@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +794|eCAS_MutualFunds@manipaltechnologies.com|aruna.periasamy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|84.53 KB|Sent|Message for aruna.periasamy@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +795|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|51.69 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna.phadnis@yahoo.com to suppression list because delivery has failed 18 times. +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +796|eCAS_MutualFunds@manipaltechnologies.com|aruna.phadnis@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|69.52 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna.phadnis@yahoo.com to suppression list because delivery has failed 18 times. +797|eCAS_MutualFunds@manipaltechnologies.com|aruna.polakam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:14|48.72 KB|Sent|Message for aruna.polakam@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +798|eCAS_MutualFunds@manipaltechnologies.com|aruna.ponnusamy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:15|51.91 KB|Sent|Message for aruna.ponnusamy@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +799|eCAS_MutualFunds@manipaltechnologies.com|aruna.prabhudas1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:15|67.26 KB|Sent|Message for aruna.prabhudas1234@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +800|eCAS_MutualFunds@manipaltechnologies.com|aruna.pumps@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:15|62.9 KB|Sent|Message for aruna.pumps@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +801|eCAS_MutualFunds@manipaltechnologies.com|aruna.puppala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:15|71.25 KB|Sent|Message for aruna.puppala@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +802|eCAS_MutualFunds@manipaltechnologies.com|aruna.rachakonda@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:15|52.53 KB|Sent|Message for aruna.rachakonda@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +803|eCAS_MutualFunds@manipaltechnologies.com|aruna.rahate9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|59.47 KB|Sent|Message for aruna.rahate9@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +804|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajguru.6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|48.85 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna.rajguru.6@gmail.com to suppression list because delivery has failed 18 times. +805|eCAS_MutualFunds@manipaltechnologies.com|aruna.rajput34@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|51.52 KB|Sent|Message for aruna.rajput34@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +806|eCAS_MutualFunds@manipaltechnologies.com|aruna.ramalingaiah@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|56.43 KB|Sent|Message for aruna.ramalingaiah@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +807|eCAS_MutualFunds@manipaltechnologies.com|aruna.ramsam@outlook.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|68.85 KB|Sent|Message for aruna.ramsam@outlook.com accepted by 52.101.68.14:25 (outlook-com.olc.protection.outlook.com) +808|eCAS_MutualFunds@manipaltechnologies.com|aruna.rani169@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:16|55.19 KB|Sent|Message for aruna.rani169@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +809|eCAS_MutualFunds@manipaltechnologies.com|aruna.raut14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|58.73 KB|Sent|Message for aruna.raut14@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +810|eCAS_MutualFunds@manipaltechnologies.com|aruna.ravnee@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|51.67 KB|Sent|Message for aruna.ravnee@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +811|eCAS_MutualFunds@manipaltechnologies.com|aruna.rp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|50.92 KB|Sent|Message for aruna.rp@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +812|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|87.23 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna.s.srinivasan@gmail.com to suppression list because delivery has failed 18 times. +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +813|eCAS_MutualFunds@manipaltechnologies.com|aruna.s.srinivasan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:17|71.34 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna.s.srinivasan@gmail.com to suppression list because delivery has failed 18 times. +814|eCAS_MutualFunds@manipaltechnologies.com|aruna.s24@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:18|49.0 KB|Sent|Message for aruna.s24@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +815|eCAS_MutualFunds@manipaltechnologies.com|aruna.sabitha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:18|55.84 KB|Sent|Message for aruna.sabitha@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +816|eCAS_MutualFunds@manipaltechnologies.com|aruna.saganali@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:18|69.83 KB|Sent|Message for aruna.saganali@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +817|eCAS_MutualFunds@manipaltechnologies.com|aruna.sajjan@hpe.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:18|80.39 KB|Sent|Message for aruna.sajjan@hpe.com accepted by 148.163.143.35:25 (mx0b-002e3701.pphosted.com) +818|eCAS_MutualFunds@manipaltechnologies.com|aruna.senthil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:18|57.18 KB|Sent|Message for aruna.senthil@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +819|eCAS_MutualFunds@manipaltechnologies.com|aruna.senthilvel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:19|75.69 KB|Sent|Message for aruna.senthilvel@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +820|eCAS_MutualFunds@manipaltechnologies.com|aruna.settipalli@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:19|52.73 KB|Sent|Message for aruna.settipalli@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +821|eCAS_MutualFunds@manipaltechnologies.com|aruna.shanthinath3105@aircel.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:19|96.99 KB|Sent|Message for aruna.shanthinath3105@aircel.co.in accepted by 74.125.24.27:25 (aspmx.l.google.com) +822|eCAS_MutualFunds@manipaltechnologies.com|aruna.sharma.1950@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:19|63.89 KB|Sent|Message for aruna.sharma.1950@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +823|eCAS_MutualFunds@manipaltechnologies.com|aruna.singh1957@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:19|66.44 KB|Sent|Message for aruna.singh1957@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +824|eCAS_MutualFunds@manipaltechnologies.com|aruna.singh2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|59.92 KB|Sent|Message for aruna.singh2@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +825|eCAS_MutualFunds@manipaltechnologies.com|aruna.siva9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|52.53 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna.siva9@gmail.com to suppression list because delivery has failed 18 times. +826|eCAS_MutualFunds@manipaltechnologies.com|aruna.sontineni@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|66.4 KB|Sent|Message for aruna.sontineni@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +827|eCAS_MutualFunds@manipaltechnologies.com|aruna.sridhar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|51.2 KB|Sent|Message for aruna.sridhar@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +828|eCAS_MutualFunds@manipaltechnologies.com|aruna.sudhakar09@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|48.83 KB|Sent|Message for aruna.sudhakar09@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +829|eCAS_MutualFunds@manipaltechnologies.com|aruna.sudheesh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:20|65.69 KB|Sent|Message for aruna.sudheesh@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +830|eCAS_MutualFunds@manipaltechnologies.com|aruna.sundar1998@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:21|51.9 KB|Sent|Message for aruna.sundar1998@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +831|eCAS_MutualFunds@manipaltechnologies.com|aruna.sundar1998@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:21|54.21 KB|Sent|Message for aruna.sundar1998@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +832|eCAS_MutualFunds@manipaltechnologies.com|aruna.sutar@majesco.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:21|57.0 KB|Sent|Message for aruna.sutar@majesco.com accepted by 52.101.145.2:25 (majesco-com.mail.protection.outlook.com) +833|eCAS_MutualFunds@manipaltechnologies.com|aruna.t.s@sbi.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:21|65.75 KB|Sent|Message for aruna.t.s@sbi.co.in accepted by 52.101.145.2:25 (sbi-co-in.mail.protection.outlook.com) +834|eCAS_MutualFunds@manipaltechnologies.com|aruna.tandra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:21|68.84 KB|Sent|Message for aruna.tandra@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +835|eCAS_MutualFunds@manipaltechnologies.com|aruna.tharak@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:22|70.17 KB|Sent|Message for aruna.tharak@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +836|eCAS_MutualFunds@manipaltechnologies.com|aruna.togara@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:22|52.85 KB|Sent|Message for aruna.togara@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +837|eCAS_MutualFunds@manipaltechnologies.com|aruna.topai@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:22|78.07 KB|Sent|Message for aruna.topai@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +838|eCAS_MutualFunds@manipaltechnologies.com|aruna.utge72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:22|84.1 KB|Sent|Message for aruna.utge72@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +839|eCAS_MutualFunds@manipaltechnologies.com|aruna.v.n@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:22|89.85 KB|Sent|Message for aruna.v.n@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +840|eCAS_MutualFunds@manipaltechnologies.com|aruna.v.t17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:23|48.46 KB|Sent|Message for aruna.v.t17@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +841|eCAS_MutualFunds@manipaltechnologies.com|aruna.vaddadi2000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:23|58.24 KB|Sent|Message for aruna.vaddadi2000@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +842|eCAS_MutualFunds@manipaltechnologies.com|aruna.vaishnav@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:23|78.4 KB|Sent|Message for aruna.vaishnav@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +843|eCAS_MutualFunds@manipaltechnologies.com|aruna.vat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:23|51.11 KB|Sent|Message for aruna.vat@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +844|eCAS_MutualFunds@manipaltechnologies.com|aruna.venkatesh6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:23|68.13 KB|Sent|Message for aruna.venkatesh6@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +845|eCAS_MutualFunds@manipaltechnologies.com|aruna.vmm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|52.23 KB|Sent|Message for aruna.vmm@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +846|eCAS_MutualFunds@manipaltechnologies.com|aruna.y86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|51.88 KB|Sent|Message for aruna.y86@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +847|eCAS_MutualFunds@manipaltechnologies.com|aruna.yaamana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|52.47 KB|Sent|Message for aruna.yaamana@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +848|eCAS_MutualFunds@manipaltechnologies.com|aruna.yammanur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|133.48 KB|Sent|Message for aruna.yammanur@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +849|eCAS_MutualFunds@manipaltechnologies.com|aruna.yarun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:24|50.2 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna.yarun@gmail.com to suppression list because delivery has failed 18 times. +850|eCAS_MutualFunds@manipaltechnologies.com|aruna.yedida@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|59.03 KB|Sent|Message for aruna.yedida@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +851|eCAS_MutualFunds@manipaltechnologies.com|aruna.yedida@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|47.72 KB|Sent|Message for aruna.yedida@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +852|eCAS_MutualFunds@manipaltechnologies.com|aruna.yukta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|89.73 KB|Sent|Message for aruna.yukta@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +853|eCAS_MutualFunds@manipaltechnologies.com|aruna043@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|48.63 KB|Sent|Message for aruna043@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +854|eCAS_MutualFunds@manipaltechnologies.com|aruna080702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:25|68.57 KB|Sent|Message for aruna080702@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +855|eCAS_MutualFunds@manipaltechnologies.com|aruna0867@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:26|67.17 KB|Sent|Message for aruna0867@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +856|eCAS_MutualFunds@manipaltechnologies.com|aruna087@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:26|77.3 KB|Sent|Message for aruna087@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +857|eCAS_MutualFunds@manipaltechnologies.com|aruna1.more@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:26|68.28 KB|Sent|Message for aruna1.more@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +858|eCAS_MutualFunds@manipaltechnologies.com|aruna100nandsharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:26|61.3 KB|Sent|Message for aruna100nandsharma@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +859|eCAS_MutualFunds@manipaltechnologies.com|aruna1105@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:26|80.88 KB|Sent|Message for aruna1105@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +860|eCAS_MutualFunds@manipaltechnologies.com|aruna1171@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:26|71.8 KB|Sent|Message for aruna1171@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +861|eCAS_MutualFunds@manipaltechnologies.com|aruna1171@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:27|55.68 KB|Sent|Message for aruna1171@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +862|eCAS_MutualFunds@manipaltechnologies.com|aruna1181@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:27|66.92 KB|Sent|Message for aruna1181@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +863|eCAS_MutualFunds@manipaltechnologies.com|aruna1229@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:27|62.35 KB|Sent|Message for aruna1229@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +864|eCAS_MutualFunds@manipaltechnologies.com|aruna1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:27|52.57 KB|Sent|Message for aruna1234@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +865|eCAS_MutualFunds@manipaltechnologies.com|aruna12m4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:27|57.64 KB|Sent|Message for aruna12m4@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +866|eCAS_MutualFunds@manipaltechnologies.com|aruna12m4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|58.57 KB|Sent|Message for aruna12m4@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +867|eCAS_MutualFunds@manipaltechnologies.com|aruna1505@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|62.53 KB|Sent|Message for aruna1505@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +868|eCAS_MutualFunds@manipaltechnologies.com|aruna15pathak07@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|84.82 KB|Sent|Message for aruna15pathak07@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +869|eCAS_MutualFunds@manipaltechnologies.com|aruna161984@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|71.69 KB|Sent|Message for aruna161984@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +870|eCAS_MutualFunds@manipaltechnologies.com|aruna18478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:28|77.68 KB|Sent|Message for aruna18478@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +871|eCAS_MutualFunds@manipaltechnologies.com|aruna190518@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:29|66.93 KB|Sent|Message for aruna190518@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +872|eCAS_MutualFunds@manipaltechnologies.com|aruna19378@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:29|48.62 KB|Sent|Message for aruna19378@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +873|eCAS_MutualFunds@manipaltechnologies.com|aruna1951@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:29|61.29 KB|Sent|Message for aruna1951@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +874|eCAS_MutualFunds@manipaltechnologies.com|aruna195623@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:29|59.76 KB|Sent|Message for aruna195623@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +875|eCAS_MutualFunds@manipaltechnologies.com|aruna1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:29|56.64 KB|Sent|Message for aruna1@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +876|eCAS_MutualFunds@manipaltechnologies.com|aruna1panchal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:29|61.31 KB|Sent|Message for aruna1panchal@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +877|eCAS_MutualFunds@manipaltechnologies.com|aruna2002in@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:30|53.37 KB|Sent|Message for aruna2002in@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +878|eCAS_MutualFunds@manipaltechnologies.com|aruna2010@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:30|68.22 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +878|eCAS_MutualFunds@manipaltechnologies.com|aruna2010@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:30|68.22 KB|Sent|Message for aruna2010@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +879|eCAS_MutualFunds@manipaltechnologies.com|aruna21may@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:30|60.93 KB|Sent|Message for aruna21may@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +880|eCAS_MutualFunds@manipaltechnologies.com|aruna2201singh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:30|61.01 KB|Sent|Message for aruna2201singh@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +881|eCAS_MutualFunds@manipaltechnologies.com|aruna25061974@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:30|48.53 KB|Sent|Message for aruna25061974@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +882|eCAS_MutualFunds@manipaltechnologies.com|aruna2601@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|52.31 KB|Sent|Message for aruna2601@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +883|eCAS_MutualFunds@manipaltechnologies.com|aruna26in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|65.21 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna26in@yahoo.com to suppression list because delivery has failed 18 times. +884|eCAS_MutualFunds@manipaltechnologies.com|aruna2794@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|67.21 KB|Sent|Message for aruna2794@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +885|eCAS_MutualFunds@manipaltechnologies.com|aruna301980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|71.57 KB|Sent|Message for aruna301980@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +886|eCAS_MutualFunds@manipaltechnologies.com|aruna3196@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|66.1 KB|Sent|Message for aruna3196@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +887|eCAS_MutualFunds@manipaltechnologies.com|aruna3265@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:31|61.33 KB|Sent|Message for aruna3265@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +888|eCAS_MutualFunds@manipaltechnologies.com|aruna3285@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:32|77.78 KB|Sent|Message for aruna3285@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +889|eCAS_MutualFunds@manipaltechnologies.com|aruna3307@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:32|67.11 KB|Sent|Message for aruna3307@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +890|eCAS_MutualFunds@manipaltechnologies.com|aruna336699@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:32|67.48 KB|Sent|Message for aruna336699@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +891|eCAS_MutualFunds@manipaltechnologies.com|aruna4anu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:32|70.59 KB|Sent|Message for aruna4anu@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +892|eCAS_MutualFunds@manipaltechnologies.com|aruna63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:32|48.63 KB|Sent|Message for aruna63@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +893|eCAS_MutualFunds@manipaltechnologies.com|aruna64mittal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|53.88 KB|Sent|Message for aruna64mittal@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +894|eCAS_MutualFunds@manipaltechnologies.com|aruna651988@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|64.82 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna651988@yahoo.com to suppression list because delivery has failed 18 times. +895|eCAS_MutualFunds@manipaltechnologies.com|aruna669923@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|50.45 KB|Sent|Message for aruna669923@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +896|eCAS_MutualFunds@manipaltechnologies.com|aruna695241@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|79.62 KB|Sent|Message for aruna695241@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +897|eCAS_MutualFunds@manipaltechnologies.com|aruna6kamaraj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|51.95 KB|Sent|Message for aruna6kamaraj@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +898|eCAS_MutualFunds@manipaltechnologies.com|aruna70d@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:33|55.35 KB|Sent|Message for aruna70d@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +899|eCAS_MutualFunds@manipaltechnologies.com|aruna77000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:34|48.47 KB|Sent|Message for aruna77000@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +900|eCAS_MutualFunds@manipaltechnologies.com|aruna7970@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:34|61.98 KB|Sent|Message for aruna7970@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +901|eCAS_MutualFunds@manipaltechnologies.com|aruna7bhadu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:34|71.13 KB|Sent|Message for aruna7bhadu@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +902|eCAS_MutualFunds@manipaltechnologies.com|aruna7oct@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:34|76.8 KB|Sent|Message for aruna7oct@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +903|eCAS_MutualFunds@manipaltechnologies.com|aruna80731@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:34|51.56 KB|Sent|Message for aruna80731@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +904|eCAS_MutualFunds@manipaltechnologies.com|aruna8574617627@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:34|56.28 KB|Sent|Message for aruna8574617627@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +905|eCAS_MutualFunds@manipaltechnologies.com|aruna88maru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|50.65 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna88maru@gmail.com to suppression list because delivery has failed 18 times. +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +906|eCAS_MutualFunds@manipaltechnologies.com|aruna90@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|73.39 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +907|eCAS_MutualFunds@manipaltechnologies.com|aruna9308998@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|61.41 KB|Sent|Message for aruna9308998@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +908|eCAS_MutualFunds@manipaltechnologies.com|aruna9481716256@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|82.43 KB|Sent|Message for aruna9481716256@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +909|eCAS_MutualFunds@manipaltechnologies.com|aruna96.ah@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:35|72.85 KB|Sent|Message for aruna96.ah@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +910|eCAS_MutualFunds@manipaltechnologies.com|aruna9837bhtt@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|62.63 KB|Sent|Message for aruna9837bhtt@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|No SMTP servers were available for gmaill.com. No hosts to try. +911|eCAS_MutualFunds@manipaltechnologies.com|aruna@gmaill.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|52.91 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna@gmaill.com to suppression list because delivery has failed 18 times. +912|eCAS_MutualFunds@manipaltechnologies.com|aruna@hkumar.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|65.19 KB|HardFail|Permanent SMTP delivery error when sending to 72.52.130.205:25 (hkumar.com) +913|eCAS_MutualFunds@manipaltechnologies.com|aruna@precimeasure.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|82.83 KB|Sent|Message for aruna@precimeasure.com accepted by 142.251.175.26:25 (aspmx.l.google.com) +914|eCAS_MutualFunds@manipaltechnologies.com|aruna@svls.info|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|82.2 KB|Sent|Message for aruna@svls.info accepted by 142.251.10.27:25 (aspmx.l.google.com) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +915|eCAS_MutualFunds@manipaltechnologies.com|aruna_1310@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:36|51.59 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna_1310@yahoo.com to suppression list because delivery has failed 18 times. +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +916|eCAS_MutualFunds@manipaltechnologies.com|aruna_49@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|64.65 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna_49@yahoo.com to suppression list because delivery has failed 18 times. +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +917|eCAS_MutualFunds@manipaltechnologies.com|aruna_8182@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|87.39 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna_8182@yahoo.com to suppression list because delivery has failed 18 times. +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +918|eCAS_MutualFunds@manipaltechnologies.com|aruna_ask@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|85.47 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna_ask@yahoo.com to suppression list because delivery has failed 18 times. +919|eCAS_MutualFunds@manipaltechnologies.com|aruna_bangal4@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:37|70.9 KB|Sent|Message for aruna_bangal4@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +920|eCAS_MutualFunds@manipaltechnologies.com|aruna_bellu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.21 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna_bellu@yahoo.com to suppression list because delivery has failed 18 times. +921|eCAS_MutualFunds@manipaltechnologies.com|aruna_bharadwaj@rediff.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|51.44 KB|Sent|Message for aruna_bharadwaj@rediff.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta7.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta5.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta7.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +922|eCAS_MutualFunds@manipaltechnologies.com|aruna_dev@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|86.25 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna_dev@yahoo.com to suppression list because delivery has failed 18 times. +923|eCAS_MutualFunds@manipaltechnologies.com|aruna_eash@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:38|57.11 KB|Sent|Message for aruna_eash@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +924|eCAS_MutualFunds@manipaltechnologies.com|aruna_ganguly2614@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.69 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +925|eCAS_MutualFunds@manipaltechnologies.com|aruna_graphics@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.94 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna_graphics@yahoo.com to suppression list because delivery has failed 18 times. +926|eCAS_MutualFunds@manipaltechnologies.com|aruna_hota@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.09 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +926|eCAS_MutualFunds@manipaltechnologies.com|aruna_hota@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|54.09 KB|Sent|Message for aruna_hota@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +927|eCAS_MutualFunds@manipaltechnologies.com|aruna_jakkula@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|70.79 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +927|eCAS_MutualFunds@manipaltechnologies.com|aruna_jakkula@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|70.79 KB|Sent|Message for aruna_jakkula@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +928|eCAS_MutualFunds@manipaltechnologies.com|aruna_jandhyala@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|57.7 KB|Sent|Message for aruna_jandhyala@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +929|eCAS_MutualFunds@manipaltechnologies.com|aruna_karnuk@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.9 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +929|eCAS_MutualFunds@manipaltechnologies.com|aruna_karnuk@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:39|56.9 KB|Sent|Message for aruna_karnuk@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +930|eCAS_MutualFunds@manipaltechnologies.com|aruna_patel51@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|50.92 KB|Sent|Message for aruna_patel51@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +931|eCAS_MutualFunds@manipaltechnologies.com|aruna_physics@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|55.64 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +931|eCAS_MutualFunds@manipaltechnologies.com|aruna_physics@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|55.64 KB|Sent|Message for aruna_physics@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +932|eCAS_MutualFunds@manipaltechnologies.com|aruna_r_j@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|52.64 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna_r_j@yahoo.com to suppression list because delivery has failed 18 times. +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +933|eCAS_MutualFunds@manipaltechnologies.com|aruna_rajesh2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|51.84 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna_rajesh2001@yahoo.com to suppression list because delivery has failed 18 times. +934|eCAS_MutualFunds@manipaltechnologies.com|aruna_ram@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|64.65 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +934|eCAS_MutualFunds@manipaltechnologies.com|aruna_ram@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:40|64.65 KB|Sent|Message for aruna_ram@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +935|eCAS_MutualFunds@manipaltechnologies.com|aruna_reddy@outlook.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|59.41 KB|Sent|Message for aruna_reddy@outlook.com accepted by 52.101.68.14:25 (outlook-com.olc.protection.outlook.com) +936|eCAS_MutualFunds@manipaltechnologies.com|aruna_shyam5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|63.18 KB|HardFail|Permanent SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +937|eCAS_MutualFunds@manipaltechnologies.com|aruna_uk@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|62.81 KB|Sent|Message for aruna_uk@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +938|eCAS_MutualFunds@manipaltechnologies.com|aruna_veda@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|53.25 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +938|eCAS_MutualFunds@manipaltechnologies.com|aruna_veda@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|53.25 KB|Sent|Message for aruna_veda@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +939|eCAS_MutualFunds@manipaltechnologies.com|aruna_vijay2002@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:41|52.34 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna_vijay2002@yahoo.co.in to suppression list because delivery has failed 18 times. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|No SMTP servers were available for indianoll.co.in. No hosts to try. +940|eCAS_MutualFunds@manipaltechnologies.com|aruna_vk@indianoll.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|51.25 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added aruna_vk@indianoll.co.in to suppression list because delivery has failed 18 times. +941|eCAS_MutualFunds@manipaltechnologies.com|arunaa.aj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|64.8 KB|Sent|Message for arunaa.aj@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +942|eCAS_MutualFunds@manipaltechnologies.com|arunaa117@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|57.99 KB|Sent|Message for arunaa117@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +943|eCAS_MutualFunds@manipaltechnologies.com|arunaa1fan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|88.45 KB|Sent|Message for arunaa1fan@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +944|eCAS_MutualFunds@manipaltechnologies.com|arunaa@bharatpetroleum.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|53.56 KB|Sent|Message for arunaa@bharatpetroleum.in accepted by 207.54.75.191:25 (mx2.hc978-91.ap.iphmx.com) +945|eCAS_MutualFunds@manipaltechnologies.com|arunaab985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:42|62.4 KB|Sent|Message for arunaab985@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +946|eCAS_MutualFunds@manipaltechnologies.com|arunaabi64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:43|73.28 KB|Sent|Message for arunaabi64@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +947|eCAS_MutualFunds@manipaltechnologies.com|arunaachala1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:43|61.78 KB|Sent|Message for arunaachala1@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +948|eCAS_MutualFunds@manipaltechnologies.com|arunaachalam333@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:43|55.99 KB|Sent|Message for arunaachalam333@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +949|eCAS_MutualFunds@manipaltechnologies.com|arunaachame@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:43|63.96 KB|Sent|Message for arunaachame@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +950|eCAS_MutualFunds@manipaltechnologies.com|arunaachari349@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:43|53.7 KB|Sent|Message for arunaachari349@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +951|eCAS_MutualFunds@manipaltechnologies.com|arunaaery@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:44|66.96 KB|Sent|Message for arunaaery@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +952|eCAS_MutualFunds@manipaltechnologies.com|arunaaggarwal6060@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:44|50.5 KB|Sent|Message for arunaaggarwal6060@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +953|eCAS_MutualFunds@manipaltechnologies.com|arunaaglave89025@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:44|52.08 KB|Sent|Message for arunaaglave89025@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +954|eCAS_MutualFunds@manipaltechnologies.com|arunaagrawal8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:44|78.19 KB|Sent|Message for arunaagrawal8@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +955|eCAS_MutualFunds@manipaltechnologies.com|arunaajitdeshpande@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:44|67.07 KB|Sent|Message for arunaajitdeshpande@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +956|eCAS_MutualFunds@manipaltechnologies.com|arunaajrl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:44|77.88 KB|Sent|Message for arunaajrl@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +957|eCAS_MutualFunds@manipaltechnologies.com|arunaalab1997@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:45|73.03 KB|Sent|Message for arunaalab1997@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +958|eCAS_MutualFunds@manipaltechnologies.com|arunaambekar0@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:45|63.75 KB|Sent|Message for arunaambekar0@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +959|eCAS_MutualFunds@manipaltechnologies.com|arunaambokar1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:45|63.33 KB|Sent|Message for arunaambokar1@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +960|eCAS_MutualFunds@manipaltechnologies.com|arunaambrosealmeida@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:45|66.84 KB|Sent|Message for arunaambrosealmeida@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +961|eCAS_MutualFunds@manipaltechnologies.com|arunaananda1982@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:45|53.64 KB|Sent|Message for arunaananda1982@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +962|eCAS_MutualFunds@manipaltechnologies.com|arunaanandhari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:46|57.09 KB|Sent|Message for arunaanandhari@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +963|eCAS_MutualFunds@manipaltechnologies.com|arunaanjel3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:46|73.37 KB|Sent|Message for arunaanjel3@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +964|eCAS_MutualFunds@manipaltechnologies.com|arunaansshu20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:46|56.1 KB|HardFail|Permanent SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +965|eCAS_MutualFunds@manipaltechnologies.com|arunaantala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:46|66.07 KB|Sent|Message for arunaantala@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +966|eCAS_MutualFunds@manipaltechnologies.com|arunaarekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:46|48.13 KB|Sent|Message for arunaarekar@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +967|eCAS_MutualFunds@manipaltechnologies.com|arunaarje007@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:46|62.31 KB|Sent|Message for arunaarje007@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +968|eCAS_MutualFunds@manipaltechnologies.com|arunaarora92@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:47|89.49 KB|Sent|Message for arunaarora92@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +969|eCAS_MutualFunds@manipaltechnologies.com|arunaarpula1011@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:47|47.93 KB|HardFail|Permanent SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +970|eCAS_MutualFunds@manipaltechnologies.com|arunaaruna43705@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:47|51.26 KB|Sent|Message for arunaaruna43705@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +971|eCAS_MutualFunds@manipaltechnologies.com|arunaaruna78168@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:47|50.01 KB|Sent|Message for arunaaruna78168@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +972|eCAS_MutualFunds@manipaltechnologies.com|arunaarunaarunaaruna351@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:47|53.44 KB|Sent|Message for arunaarunaarunaaruna351@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +973|eCAS_MutualFunds@manipaltechnologies.com|arunaarushisabi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|48.84 KB|Sent|Message for arunaarushisabi@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +974|eCAS_MutualFunds@manipaltechnologies.com|arunaarya_vmu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|80.37 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunaarya_vmu@yahoo.com to suppression list because delivery has failed 18 times. +975|eCAS_MutualFunds@manipaltechnologies.com|arunaatkale@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|57.31 KB|Sent|Message for arunaatkale@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +976|eCAS_MutualFunds@manipaltechnologies.com|arunaatwal1975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|66.51 KB|Sent|Message for arunaatwal1975@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +977|eCAS_MutualFunds@manipaltechnologies.com|arunaavghade123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|69.29 KB|Sent|Message for arunaavghade123@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +978|eCAS_MutualFunds@manipaltechnologies.com|arunaavinashkadam27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:48|47.88 KB|Sent|Message for arunaavinashkadam27@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +979|eCAS_MutualFunds@manipaltechnologies.com|arunaawasthi1966@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:49|49.36 KB|Sent|Message for arunaawasthi1966@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +980|eCAS_MutualFunds@manipaltechnologies.com|arunaayare14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:49|52.14 KB|Sent|Message for arunaayare14@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +981|eCAS_MutualFunds@manipaltechnologies.com|arunab.bhabhda@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:49|52.07 KB|Sent|Message for arunab.bhabhda@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +982|eCAS_MutualFunds@manipaltechnologies.com|arunab.dulloo@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:49|73.16 KB|Sent|Message for arunab.dulloo@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +983|eCAS_MutualFunds@manipaltechnologies.com|arunab14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:49|62.49 KB|Sent|Message for arunab14@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +984|eCAS_MutualFunds@manipaltechnologies.com|arunab14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:49|67.26 KB|Sent|Message for arunab14@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +985|eCAS_MutualFunds@manipaltechnologies.com|arunab2308@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:50|61.2 KB|Sent|Message for arunab2308@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +986|eCAS_MutualFunds@manipaltechnologies.com|arunab2329@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:50|52.52 KB|Sent|Message for arunab2329@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +987|eCAS_MutualFunds@manipaltechnologies.com|arunab446@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:50|57.89 KB|Sent|Message for arunab446@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +988|eCAS_MutualFunds@manipaltechnologies.com|arunab72@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:50|52.4 KB|HardFail|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +988|eCAS_MutualFunds@manipaltechnologies.com|arunab72@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:50|52.4 KB|HardFail|Permanent SMTP delivery error when sending to 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +989|eCAS_MutualFunds@manipaltechnologies.com|arunab81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:50|66.21 KB|Sent|Message for arunab81@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +990|eCAS_MutualFunds@manipaltechnologies.com|arunab95@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:51|57.58 KB|Sent|Message for arunab95@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +991|eCAS_MutualFunds@manipaltechnologies.com|arunaba.jadeja99@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:51|70.75 KB|Sent|Message for arunaba.jadeja99@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +992|eCAS_MutualFunds@manipaltechnologies.com|arunabadaik17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:51|67.28 KB|Sent|Message for arunabadaik17@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +993|eCAS_MutualFunds@manipaltechnologies.com|arunabadekar28@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:51|61.82 KB|Sent|Message for arunabadekar28@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +994|eCAS_MutualFunds@manipaltechnologies.com|arunabadhe123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:52|48.72 KB|Sent|Message for arunabadhe123@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +995|eCAS_MutualFunds@manipaltechnologies.com|arunabadhree16@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:52|54.62 KB|Sent|Message for arunabadhree16@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +996|eCAS_MutualFunds@manipaltechnologies.com|arunabagani600@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:52|66.15 KB|Sent|Message for arunabagani600@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +997|eCAS_MutualFunds@manipaltechnologies.com|arunabaghmar20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:52|63.11 KB|Sent|Message for arunabaghmar20@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +998|eCAS_MutualFunds@manipaltechnologies.com|arunabah.chatterjee@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:52|67.79 KB|Sent|Message for arunabah.chatterjee@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +999|eCAS_MutualFunds@manipaltechnologies.com|arunabaipawar26@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:52|47.82 KB|Sent|Message for arunabaipawar26@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1000|eCAS_MutualFunds@manipaltechnologies.com|arunabalajimk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:53|69.52 KB|Sent|Message for arunabalajimk@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1001|eCAS_MutualFunds@manipaltechnologies.com|arunabalakrishnan3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:53|51.21 KB|Sent|Message for arunabalakrishnan3@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1002|eCAS_MutualFunds@manipaltechnologies.com|arunabalaswamy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:53|48.16 KB|Sent|Message for arunabalaswamy@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1003|eCAS_MutualFunds@manipaltechnologies.com|arunabaniaugup@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:53|48.81 KB|HardFail|Permanent SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1004|eCAS_MutualFunds@manipaltechnologies.com|arunabapulal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:53|67.46 KB|Sent|Message for arunabapulal@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1005|eCAS_MutualFunds@manipaltechnologies.com|arunabarahate12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:53|56.76 KB|Sent|Message for arunabarahate12@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1006|eCAS_MutualFunds@manipaltechnologies.com|arunabari31@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:54|52.83 KB|Sent|Message for arunabari31@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1007|eCAS_MutualFunds@manipaltechnologies.com|arunabariaarunabaria2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:54|53.03 KB|Sent|Message for arunabariaarunabaria2@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1008|eCAS_MutualFunds@manipaltechnologies.com|arunabarik5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:54|65.84 KB|Sent|Message for arunabarik5@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1009|eCAS_MutualFunds@manipaltechnologies.com|arunabarik69@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:54|58.08 KB|Sent|Message for arunabarik69@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1010|eCAS_MutualFunds@manipaltechnologies.com|arunabarikaruna795@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:54|51.96 KB|HardFail|Permanent SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1011|eCAS_MutualFunds@manipaltechnologies.com|arunabarisal1109@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:54|59.71 KB|Sent|Message for arunabarisal1109@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1012|eCAS_MutualFunds@manipaltechnologies.com|arunabarnwal266@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:55|65.33 KB|Sent|Message for arunabarnwal266@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1013|eCAS_MutualFunds@manipaltechnologies.com|arunabaruah30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:55|52.28 KB|Sent|Message for arunabaruah30@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1014|eCAS_MutualFunds@manipaltechnologies.com|arunabasantgehlot@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:55|73.58 KB|Sent|Message for arunabasantgehlot@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1015|eCAS_MutualFunds@manipaltechnologies.com|arunabd00@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:55|58.44 KB|Sent|Message for arunabd00@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1016|eCAS_MutualFunds@manipaltechnologies.com|arunabdash@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:55|55.53 KB|Sent|Message for arunabdash@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1017|eCAS_MutualFunds@manipaltechnologies.com|arunabdey@outlook.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:55|52.33 KB|HardFail|Permanent SMTP delivery error when sending to 52.101.68.14:25 (outlook-com.olc.protection.outlook.com) +1018|eCAS_MutualFunds@manipaltechnologies.com|arunabed.g@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|55.3 KB|Sent|Message for arunabed.g@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1019|eCAS_MutualFunds@manipaltechnologies.com|arunabeernidi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|50.03 KB|Sent|Message for arunabeernidi@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1020|eCAS_MutualFunds@manipaltechnologies.com|arunaben.g.chauhan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|51.8 KB|Sent|Message for arunaben.g.chauhan@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1021|eCAS_MutualFunds@manipaltechnologies.com|arunaben787@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|57.17 KB|Sent|Message for arunaben787@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1022|eCAS_MutualFunds@manipaltechnologies.com|arunaben@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|48.89 KB|Sent|Message for arunaben@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1023|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:56|68.23 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunaben_patel@yahoo.com to suppression list because delivery has failed 18 times. +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1024|eCAS_MutualFunds@manipaltechnologies.com|arunaben_patel@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|57.82 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunaben_patel@yahoo.com to suppression list because delivery has failed 18 times. +1025|eCAS_MutualFunds@manipaltechnologies.com|arunabenbhatt69@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|52.45 KB|Sent|Message for arunabenbhatt69@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1026|eCAS_MutualFunds@manipaltechnologies.com|arunabenjoshi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|56.17 KB|Sent|Message for arunabenjoshi@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1027|eCAS_MutualFunds@manipaltechnologies.com|arunabenjwal.kpl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|75.01 KB|Sent|Message for arunabenjwal.kpl@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1028|eCAS_MutualFunds@manipaltechnologies.com|arunabenpatel216@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:57|54.69 KB|Sent|Message for arunabenpatel216@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1029|eCAS_MutualFunds@manipaltechnologies.com|arunabenshah1954@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:58|62.34 KB|Sent|Message for arunabenshah1954@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1030|eCAS_MutualFunds@manipaltechnologies.com|arunabenthakur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:58|67.07 KB|Sent|Message for arunabenthakur@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1031|eCAS_MutualFunds@manipaltechnologies.com|arunabenvasava1988@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:58|58.68 KB|Sent|Message for arunabenvasava1988@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1032|eCAS_MutualFunds@manipaltechnologies.com|arunabera113@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:58|62.28 KB|Sent|Message for arunabera113@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1033|eCAS_MutualFunds@manipaltechnologies.com|arunabeshc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:58|85.45 KB|Sent|Message for arunabeshc@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1034|eCAS_MutualFunds@manipaltechnologies.com|arunabh.123.jha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:58|71.84 KB|Sent|Message for arunabh.123.jha@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1035|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bhattacharjee@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|80.12 KB|Sent|Message for arunabh.bhattacharjee@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1036|eCAS_MutualFunds@manipaltechnologies.com|arunabh.biswas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.46 KB|Sent|Message for arunabh.biswas@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1037|eCAS_MutualFunds@manipaltechnologies.com|arunabh.bordoloi1993@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|54.93 KB|Sent|Message for arunabh.bordoloi1993@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1038|eCAS_MutualFunds@manipaltechnologies.com|arunabh.chatterjee9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|62.8 KB|Sent|Message for arunabh.chatterjee9@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1039|eCAS_MutualFunds@manipaltechnologies.com|arunabh.sarma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:01:59|81.0 KB|Sent|Message for arunabh.sarma@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1040|eCAS_MutualFunds@manipaltechnologies.com|arunabh81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|61.21 KB|Sent|Message for arunabh81@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1041|eCAS_MutualFunds@manipaltechnologies.com|arunabh892@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|61.07 KB|Sent|Message for arunabh892@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1042|eCAS_MutualFunds@manipaltechnologies.com|arunabh_sp25@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|59.88 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunabh_sp25@yahoo.co.in to suppression list because delivery has failed 18 times. +1043|eCAS_MutualFunds@manipaltechnologies.com|arunabha.am.mukhopadhyay@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|50.33 KB|Sent|Message for arunabha.am.mukhopadhyay@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1044|eCAS_MutualFunds@manipaltechnologies.com|arunabha.bkp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|63.61 KB|Sent|Message for arunabha.bkp@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1045|eCAS_MutualFunds@manipaltechnologies.com|arunabha.cu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:00|70.25 KB|Sent|Message for arunabha.cu@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1046|eCAS_MutualFunds@manipaltechnologies.com|arunabha.datta100@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:01|81.34 KB|Sent|Message for arunabha.datta100@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1047|eCAS_MutualFunds@manipaltechnologies.com|arunabha.ghosh@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:01|64.18 KB|Sent|Message for arunabha.ghosh@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +1048|eCAS_MutualFunds@manipaltechnologies.com|arunabha.jtbdo@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:01|56.33 KB|Sent|Message for arunabha.jtbdo@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1049|eCAS_MutualFunds@manipaltechnologies.com|arunabha.lifein@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:01|81.59 KB|Sent|Message for arunabha.lifein@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1050|eCAS_MutualFunds@manipaltechnologies.com|arunabha.msr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:01|97.91 KB|Sent|Message for arunabha.msr@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1051|eCAS_MutualFunds@manipaltechnologies.com|arunabha.sen@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|59.89 KB|Sent|Message for arunabha.sen@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1052|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|57.39 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunabha.susama@gmail.com to suppression list because delivery has failed 18 times. +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1053|eCAS_MutualFunds@manipaltechnologies.com|arunabha.susama@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|65.46 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunabha.susama@gmail.com to suppression list because delivery has failed 18 times. +1054|eCAS_MutualFunds@manipaltechnologies.com|arunabha01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|54.51 KB|Sent|Message for arunabha01@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1055|eCAS_MutualFunds@manipaltechnologies.com|arunabha01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|78.41 KB|Sent|Message for arunabha01@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1056|eCAS_MutualFunds@manipaltechnologies.com|arunabha119@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:02|49.34 KB|Sent|Message for arunabha119@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1057|eCAS_MutualFunds@manipaltechnologies.com|arunabha14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:03|66.16 KB|Sent|Message for arunabha14@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1058|eCAS_MutualFunds@manipaltechnologies.com|arunabha1981gon@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:03|58.99 KB|Sent|Message for arunabha1981gon@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1059|eCAS_MutualFunds@manipaltechnologies.com|arunabha2702@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:03|53.47 KB|Sent|Message for arunabha2702@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1060|eCAS_MutualFunds@manipaltechnologies.com|arunabha548@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:03|83.48 KB|Sent|Message for arunabha548@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1061|eCAS_MutualFunds@manipaltechnologies.com|arunabha71@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:03|49.76 KB|Sent|Message for arunabha71@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1062|eCAS_MutualFunds@manipaltechnologies.com|arunabha83patra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:04|64.47 KB|Sent|Message for arunabha83patra@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1063|eCAS_MutualFunds@manipaltechnologies.com|arunabha92@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:04|65.89 KB|Sent|Message for arunabha92@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1064|eCAS_MutualFunds@manipaltechnologies.com|arunabhabose@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:04|85.41 KB|Sent|Message for arunabhabose@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1065|eCAS_MutualFunds@manipaltechnologies.com|arunabhachakraborty326@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:04|66.73 KB|Sent|Message for arunabhachakraborty326@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1066|eCAS_MutualFunds@manipaltechnologies.com|arunabhadas039@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:04|49.1 KB|Sent|Message for arunabhadas039@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1067|eCAS_MutualFunds@manipaltechnologies.com|arunabhadhikari91@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:05|67.46 KB|Sent|Message for arunabhadhikari91@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1068|eCAS_MutualFunds@manipaltechnologies.com|arunabhadoriya.ab08@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:05|48.74 KB|Sent|Message for arunabhadoriya.ab08@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1069|eCAS_MutualFunds@manipaltechnologies.com|arunabhag1969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:05|72.39 KB|Sent|Message for arunabhag1969@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1070|eCAS_MutualFunds@manipaltechnologies.com|arunabhagat494@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:05|58.03 KB|Sent|Message for arunabhagat494@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1071|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghosh.1363@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:05|58.47 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +1071|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghosh.1363@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:05|58.47 KB|Sent|Message for arunabhaghosh.1363@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1072|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghosh.1363@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:05|63.55 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +1072|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghosh.1363@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:05|63.55 KB|Sent|Message for arunabhaghosh.1363@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1073|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghosh.1363@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|61.4 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +1073|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghosh.1363@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|61.4 KB|Sent|Message for arunabhaghosh.1363@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1074|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghosh.1363@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|60.9 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +1074|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghosh.1363@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|60.9 KB|Sent|Message for arunabhaghosh.1363@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1075|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghosh237@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|82.33 KB|Sent|Message for arunabhaghosh237@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx01.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx01.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.57.152.5:25 (mx02.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.57.156.30:25 (mx01.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.57.152.5:25 (mx02.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.42.251.62:25 (mx01.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx01.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx01.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx02.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.42.251.62:25 (mx02.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.42.251.62:25 (mx02.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.57.156.30:25 (mx01.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx01.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +1076|eCAS_MutualFunds@manipaltechnologies.com|arunabhaghoshkolkata@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|63.51 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunabhaghoshkolkata@icloud.com to suppression list because delivery has failed 18 times. +1077|eCAS_MutualFunds@manipaltechnologies.com|arunabhagora1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:06|67.76 KB|Sent|Message for arunabhagora1@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1078|eCAS_MutualFunds@manipaltechnologies.com|arunabhahazra2013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:07|61.09 KB|Sent|Message for arunabhahazra2013@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1079|eCAS_MutualFunds@manipaltechnologies.com|arunabhakarmakar55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:07|69.0 KB|Sent|Message for arunabhakarmakar55@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1080|eCAS_MutualFunds@manipaltechnologies.com|arunabhakundu9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:07|57.97 KB|Sent|Message for arunabhakundu9@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1081|eCAS_MutualFunds@manipaltechnologies.com|arunabhalahiri667@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:07|48.41 KB|Sent|Message for arunabhalahiri667@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1082|eCAS_MutualFunds@manipaltechnologies.com|arunabhamaitibse@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:07|75.46 KB|Sent|Message for arunabhamaitibse@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1083|eCAS_MutualFunds@manipaltechnologies.com|arunabhamanna040@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|67.48 KB|Sent|Message for arunabhamanna040@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1084|eCAS_MutualFunds@manipaltechnologies.com|arunabhanawat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|74.1 KB|Sent|Message for arunabhanawat@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1085|eCAS_MutualFunds@manipaltechnologies.com|arunabhanja1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|76.81 KB|Sent|Message for arunabhanja1@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1086|eCAS_MutualFunds@manipaltechnologies.com|arunabharada196@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|50.14 KB|Sent|Message for arunabharada196@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1087|eCAS_MutualFunds@manipaltechnologies.com|arunabharat2005@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|74.21 KB|Sent|Message for arunabharat2005@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1088|eCAS_MutualFunds@manipaltechnologies.com|arunabhardwj@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:08|51.93 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunabhardwj@yahoo.com to suppression list because delivery has failed 18 times. +1089|eCAS_MutualFunds@manipaltechnologies.com|arunabharouth14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:09|68.66 KB|Sent|Message for arunabharouth14@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1090|eCAS_MutualFunds@manipaltechnologies.com|arunabharoy1313@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:09|59.86 KB|Sent|Message for arunabharoy1313@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1091|eCAS_MutualFunds@manipaltechnologies.com|arunabharti85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:09|64.65 KB|Sent|Message for arunabharti85@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1092|eCAS_MutualFunds@manipaltechnologies.com|arunabhashil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:09|89.23 KB|Sent|Message for arunabhashil@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1093|eCAS_MutualFunds@manipaltechnologies.com|arunabhat004@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:09|56.94 KB|Sent|Message for arunabhat004@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1094|eCAS_MutualFunds@manipaltechnologies.com|arunabhat4@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|69.02 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunabhat4@yahoo.com to suppression list because delivery has failed 18 times. +1095|eCAS_MutualFunds@manipaltechnologies.com|arunabhati7711@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|73.73 KB|Sent|Message for arunabhati7711@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1096|eCAS_MutualFunds@manipaltechnologies.com|arunabhatnagar1112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|74.21 KB|Sent|Message for arunabhatnagar1112@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1097|eCAS_MutualFunds@manipaltechnologies.com|arunabhatta964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|72.17 KB|Sent|Message for arunabhatta964@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1098|eCAS_MutualFunds@manipaltechnologies.com|arunabhatuli@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:10|77.43 KB|Sent|Message for arunabhatuli@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1099|eCAS_MutualFunds@manipaltechnologies.com|arunabhbanerji@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:11|59.19 KB|Sent|Message for arunabhbanerji@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1100|eCAS_MutualFunds@manipaltechnologies.com|arunabheke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:11|57.37 KB|Sent|Message for arunabheke@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1101|eCAS_MutualFunds@manipaltechnologies.com|arunabhgogoi1984@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:11|52.01 KB|Sent|Message for arunabhgogoi1984@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1102|eCAS_MutualFunds@manipaltechnologies.com|arunabhinav.k.r@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:11|52.57 KB|Sent|Message for arunabhinav.k.r@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1103|eCAS_MutualFunds@manipaltechnologies.com|arunabhinav12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:11|63.41 KB|Sent|Message for arunabhinav12@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1104|eCAS_MutualFunds@manipaltechnologies.com|arunabhinav77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:12|86.07 KB|Sent|Message for arunabhinav77@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1105|eCAS_MutualFunds@manipaltechnologies.com|arunabhjain13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:12|52.88 KB|Sent|Message for arunabhjain13@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1106|eCAS_MutualFunds@manipaltechnologies.com|arunabhkrray@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:12|76.45 KB|Sent|Message for arunabhkrray@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1107|eCAS_MutualFunds@manipaltechnologies.com|arunabhlic@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:12|56.26 KB|Sent|Message for arunabhlic@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1108|eCAS_MutualFunds@manipaltechnologies.com|arunabhlic@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:12|52.65 KB|Sent|Message for arunabhlic@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1109|eCAS_MutualFunds@manipaltechnologies.com|arunabhlic@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:12|92.01 KB|Sent|Message for arunabhlic@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1110|eCAS_MutualFunds@manipaltechnologies.com|arunabhmadhur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|80.22 KB|Sent|Message for arunabhmadhur@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1111|eCAS_MutualFunds@manipaltechnologies.com|arunabhnest@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|90.25 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunabhnest@gmail.com to suppression list because delivery has failed 18 times. +1112|eCAS_MutualFunds@manipaltechnologies.com|arunabhochat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|56.98 KB|Sent|Message for arunabhochat@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1113|eCAS_MutualFunds@manipaltechnologies.com|arunabhooker2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|59.65 KB|Sent|Message for arunabhooker2009@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1114|eCAS_MutualFunds@manipaltechnologies.com|arunabhooker2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|49.75 KB|Sent|Message for arunabhooker2009@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1115|eCAS_MutualFunds@manipaltechnologies.com|arunabhor1972@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:13|58.17 KB|Sent|Message for arunabhor1972@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1116|eCAS_MutualFunds@manipaltechnologies.com|arunabhosale515@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:14|67.99 KB|Sent|Message for arunabhosale515@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1117|eCAS_MutualFunds@manipaltechnologies.com|arunabhra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:14|55.25 KB|Sent|Message for arunabhra@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1118|eCAS_MutualFunds@manipaltechnologies.com|arunabhroy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:14|52.7 KB|Sent|Message for arunabhroy@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1119|eCAS_MutualFunds@manipaltechnologies.com|arunabhroy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:14|65.71 KB|Sent|Message for arunabhroy@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1120|eCAS_MutualFunds@manipaltechnologies.com|arunabhroy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:14|67.11 KB|Sent|Message for arunabhroy@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1121|eCAS_MutualFunds@manipaltechnologies.com|arunabhroy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|65.94 KB|Sent|Message for arunabhroy@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1122|eCAS_MutualFunds@manipaltechnologies.com|arunabhsharma@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|56.03 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunabhsharma@yahoo.co.in to suppression list because delivery has failed 18 times. +1123|eCAS_MutualFunds@manipaltechnologies.com|arunabhumik.1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|49.56 KB|Sent|Message for arunabhumik.1234@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1124|eCAS_MutualFunds@manipaltechnologies.com|arunabhuvad2001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|59.33 KB|Sent|Message for arunabhuvad2001@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1125|eCAS_MutualFunds@manipaltechnologies.com|arunabhyasi30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|67.89 KB|Sent|Message for arunabhyasi30@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1126|eCAS_MutualFunds@manipaltechnologies.com|arunabikas2018@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:15|52.07 KB|Sent|Message for arunabikas2018@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1127|eCAS_MutualFunds@manipaltechnologies.com|arunabingi30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:16|64.08 KB|Sent|Message for arunabingi30@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1128|eCAS_MutualFunds@manipaltechnologies.com|arunabiradar1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:16|61.26 KB|Sent|Message for arunabiradar1983@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1129|eCAS_MutualFunds@manipaltechnologies.com|arunabisht3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:16|61.67 KB|Sent|Message for arunabisht3@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1130|eCAS_MutualFunds@manipaltechnologies.com|arunabkhamkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:16|68.99 KB|Sent|Message for arunabkhamkar@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1131|eCAS_MutualFunds@manipaltechnologies.com|arunabmeshram@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:16|50.75 KB|Sent|Message for arunabmeshram@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1132|eCAS_MutualFunds@manipaltechnologies.com|arunabmore@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:17|79.26 KB|Sent|An error occurred while sending the message to 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +1132|eCAS_MutualFunds@manipaltechnologies.com|arunabmore@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:17|79.26 KB|Sent|Message for arunabmore@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1133|eCAS_MutualFunds@manipaltechnologies.com|arunabollepogu111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:17|57.16 KB|Sent|Message for arunabollepogu111@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1134|eCAS_MutualFunds@manipaltechnologies.com|arunabommana920@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:17|74.63 KB|Sent|Message for arunabommana920@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1135|eCAS_MutualFunds@manipaltechnologies.com|arunabonam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:17|52.35 KB|Sent|Message for arunabonam@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1136|eCAS_MutualFunds@manipaltechnologies.com|arunabose@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:17|67.99 KB|Sent|Message for arunabose@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1137|eCAS_MutualFunds@manipaltechnologies.com|arunabothra4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|47.93 KB|Sent|Message for arunabothra4@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1138|eCAS_MutualFunds@manipaltechnologies.com|arunabrol.lic8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|49.54 KB|Sent|Message for arunabrol.lic8@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1139|eCAS_MutualFunds@manipaltechnologies.com|arunabru@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|68.38 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunabru@yahoo.com to suppression list because delivery has failed 18 times. +1140|eCAS_MutualFunds@manipaltechnologies.com|arunabujji454@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|57.28 KB|Sent|Message for arunabujji454@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1141|eCAS_MutualFunds@manipaltechnologies.com|arunabuzade222ar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|65.42 KB|Sent|Message for arunabuzade222ar@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1142|eCAS_MutualFunds@manipaltechnologies.com|arunac110@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:18|48.59 KB|Sent|Message for arunac110@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1143|eCAS_MutualFunds@manipaltechnologies.com|arunacdpo2012@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:19|60.73 KB|Sent|Message for arunacdpo2012@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1144|eCAS_MutualFunds@manipaltechnologies.com|arunach1970@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:19|56.46 KB|Sent|Message for arunach1970@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1145|eCAS_MutualFunds@manipaltechnologies.com|arunach1970@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:19|87.25 KB|Sent|Message for arunach1970@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1146|eCAS_MutualFunds@manipaltechnologies.com|arunacha1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:19|60.47 KB|Sent|Message for arunacha1978@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1147|eCAS_MutualFunds@manipaltechnologies.com|arunachabukswar21@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:19|62.32 KB|Sent|Message for arunachabukswar21@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1148|eCAS_MutualFunds@manipaltechnologies.com|arunachachar73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:20|57.13 KB|Sent|Message for arunachachar73@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1149|eCAS_MutualFunds@manipaltechnologies.com|arunachal.acharya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:20|65.32 KB|Sent|Message for arunachal.acharya@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1150|eCAS_MutualFunds@manipaltechnologies.com|arunachal.acharya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:20|64.0 KB|Sent|Message for arunachal.acharya@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1151|eCAS_MutualFunds@manipaltechnologies.com|arunachal.maitra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:20|78.2 KB|Sent|Message for arunachal.maitra@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1152|eCAS_MutualFunds@manipaltechnologies.com|arunachal78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:20|52.21 KB|Sent|Message for arunachal78@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1153|eCAS_MutualFunds@manipaltechnologies.com|arunachalaa06@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:20|61.45 KB|Sent|Message for arunachalaa06@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1154|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.bhuvana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|69.13 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunachalam.bhuvana@gmail.com to suppression list because delivery has failed 18 times. +1155|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.k1946@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|62.72 KB|Sent|Message for arunachalam.k1946@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1156|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.om@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|51.99 KB|Sent|Message for arunachalam.om@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1157|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.palaniappan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|52.5 KB|Sent|Message for arunachalam.palaniappan@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1158|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.sa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:21|66.6 KB|Sent|Message for arunachalam.sa@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1159|eCAS_MutualFunds@manipaltechnologies.com|arunachalam.sm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:22|65.69 KB|Sent|Message for arunachalam.sm@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1160|eCAS_MutualFunds@manipaltechnologies.com|arunachalam009@sify.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:22|51.87 KB|HardFail|Permanent SMTP delivery error when sending to 52.101.137.2:25 (sify-com.mail.protection.outlook.com) +1161|eCAS_MutualFunds@manipaltechnologies.com|arunachalam04@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:22|55.75 KB|Sent|Message for arunachalam04@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1162|eCAS_MutualFunds@manipaltechnologies.com|arunachalam08@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:22|71.95 KB|Sent|Message for arunachalam08@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1163|eCAS_MutualFunds@manipaltechnologies.com|arunachalam123q@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:22|54.97 KB|Sent|Message for arunachalam123q@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1164|eCAS_MutualFunds@manipaltechnologies.com|arunachalam14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:22|67.37 KB|Sent|Message for arunachalam14@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1165|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|57.34 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunachalam1607@gmail.com to suppression list because delivery has failed 18 times. +1166|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|63.3 KB|Sent|Message for arunachalam1962@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1167|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1963@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|60.71 KB|Sent|Message for arunachalam1963@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1168|eCAS_MutualFunds@manipaltechnologies.com|arunachalam1970m@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|54.72 KB|Sent|Message for arunachalam1970m@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1169|eCAS_MutualFunds@manipaltechnologies.com|arunachalam24091969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|47.22 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1170|eCAS_MutualFunds@manipaltechnologies.com|arunachalam271265@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:23|80.14 KB|Sent|Message for arunachalam271265@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1171|eCAS_MutualFunds@manipaltechnologies.com|arunachalam2@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:24|64.54 KB|Sent|Message for arunachalam2@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +1172|eCAS_MutualFunds@manipaltechnologies.com|arunachalam304@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:24|59.01 KB|Sent|Message for arunachalam304@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1173|eCAS_MutualFunds@manipaltechnologies.com|arunachalam5005@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:24|61.71 KB|Sent|Message for arunachalam5005@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1174|eCAS_MutualFunds@manipaltechnologies.com|arunachalam657@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:24|55.45 KB|Sent|Message for arunachalam657@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1175|eCAS_MutualFunds@manipaltechnologies.com|arunachalam7695@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:24|59.17 KB|Sent|Message for arunachalam7695@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1176|eCAS_MutualFunds@manipaltechnologies.com|arunachalam84.yoga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:25|61.93 KB|Sent|Message for arunachalam84.yoga@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1177|eCAS_MutualFunds@manipaltechnologies.com|arunachalam978715@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:25|48.14 KB|Sent|Message for arunachalam978715@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1178|eCAS_MutualFunds@manipaltechnologies.com|arunachalam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:25|52.71 KB|Sent|Message for arunachalam@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1179|eCAS_MutualFunds@manipaltechnologies.com|arunachalam@gmqil.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:25|47.89 KB|Sent|Message for arunachalam@gmqil.com accepted by 103.224.212.34:25 (park-mx.above.com) +1180|eCAS_MutualFunds@manipaltechnologies.com|arunachalama140119@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:25|61.45 KB|Sent|Message for arunachalama140119@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1181|eCAS_MutualFunds@manipaltechnologies.com|arunachalamamsam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:25|59.15 KB|Sent|Message for arunachalamamsam@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1182|eCAS_MutualFunds@manipaltechnologies.com|arunachalamarumugam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:26|51.97 KB|Sent|Message for arunachalamarumugam@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1183|eCAS_MutualFunds@manipaltechnologies.com|arunachalamc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:26|56.47 KB|Sent|Message for arunachalamc@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1184|eCAS_MutualFunds@manipaltechnologies.com|arunachalamc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:26|54.21 KB|Sent|Message for arunachalamc@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1185|eCAS_MutualFunds@manipaltechnologies.com|arunachalamer@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:26|92.99 KB|Sent|Message for arunachalamer@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1186|eCAS_MutualFunds@manipaltechnologies.com|arunachalamgomathinayagam639@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:26|52.3 KB|Sent|Message for arunachalamgomathinayagam639@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1187|eCAS_MutualFunds@manipaltechnologies.com|arunachalamits179@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:26|53.98 KB|Sent|Message for arunachalamits179@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1188|eCAS_MutualFunds@manipaltechnologies.com|arunachalamjothi11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|51.63 KB|Sent|Message for arunachalamjothi11@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1189|eCAS_MutualFunds@manipaltechnologies.com|arunachalamna@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|54.52 KB|Sent|Message for arunachalamna@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1190|eCAS_MutualFunds@manipaltechnologies.com|arunachalamnatarajan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|54.63 KB|Sent|Message for arunachalamnatarajan@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1191|eCAS_MutualFunds@manipaltechnologies.com|arunachalamp74@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|76.72 KB|Sent|Message for arunachalamp74@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1192|eCAS_MutualFunds@manipaltechnologies.com|arunachalampictures@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|86.68 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunachalampictures@gmail.com to suppression list because delivery has failed 18 times. +1193|eCAS_MutualFunds@manipaltechnologies.com|arunachalamravi1955@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:27|64.68 KB|Sent|Message for arunachalamravi1955@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1194|eCAS_MutualFunds@manipaltechnologies.com|arunachalamravichandran1965@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:28|75.11 KB|Sent|Message for arunachalamravichandran1965@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1195|eCAS_MutualFunds@manipaltechnologies.com|arunachalamrevathi55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:28|57.59 KB|Sent|Message for arunachalamrevathi55@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1196|eCAS_MutualFunds@manipaltechnologies.com|arunachalams95@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:28|63.15 KB|Sent|Message for arunachalams95@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1197|eCAS_MutualFunds@manipaltechnologies.com|arunachalamsenthil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:28|86.38 KB|Sent|Message for arunachalamsenthil@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1198|eCAS_MutualFunds@manipaltechnologies.com|arunachalamtex@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:28|54.66 KB|Sent|Message for arunachalamtex@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1199|eCAS_MutualFunds@manipaltechnologies.com|arunachalamvk@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|67.67 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunachalamvk@yahoo.com to suppression list because delivery has failed 18 times. +1200|eCAS_MutualFunds@manipaltechnologies.com|arunachalasiva1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|60.99 KB|Sent|Message for arunachalasiva1980@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1201|eCAS_MutualFunds@manipaltechnologies.com|arunachalatex.salem@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|52.41 KB|Sent|Message for arunachalatex.salem@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1202|eCAS_MutualFunds@manipaltechnologies.com|arunachalbasu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|57.33 KB|Sent|Message for arunachalbasu@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1203|eCAS_MutualFunds@manipaltechnologies.com|arunachaleswara.autocomp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|52.86 KB|Sent|Message for arunachaleswara.autocomp@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1204|eCAS_MutualFunds@manipaltechnologies.com|arunachallam2013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|56.46 KB|Sent|Message for arunachallam2013@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1205|eCAS_MutualFunds@manipaltechnologies.com|arunachalmaruna74@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:29|59.42 KB|Sent|Message for arunachalmaruna74@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1206|eCAS_MutualFunds@manipaltechnologies.com|arunacham@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:30|70.66 KB|Sent|Message for arunacham@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1207|eCAS_MutualFunds@manipaltechnologies.com|arunachandel83@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:30|66.88 KB|Sent|Message for arunachandel83@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1208|eCAS_MutualFunds@manipaltechnologies.com|arunachandrag@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:30|68.1 KB|Sent|Message for arunachandrag@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1209|eCAS_MutualFunds@manipaltechnologies.com|arunachanu11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:30|51.88 KB|Sent|Message for arunachanu11@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1210|eCAS_MutualFunds@manipaltechnologies.com|arunacharde9021@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:30|54.75 KB|Sent|Message for arunacharde9021@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1211|eCAS_MutualFunds@manipaltechnologies.com|arunacharithogiti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:31|58.81 KB|Sent|Message for arunacharithogiti@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1212|eCAS_MutualFunds@manipaltechnologies.com|arunacharjya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:31|48.9 KB|Sent|Message for arunacharjya@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1213|eCAS_MutualFunds@manipaltechnologies.com|arunacharya121@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:31|57.39 KB|Sent|Message for arunacharya121@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1214|eCAS_MutualFunds@manipaltechnologies.com|arunacharyasbi18@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:31|79.92 KB|Sent|Message for arunacharyasbi18@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1215|eCAS_MutualFunds@manipaltechnologies.com|arunachaudhari1005@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:31|62.52 KB|Sent|Message for arunachaudhari1005@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1216|eCAS_MutualFunds@manipaltechnologies.com|arunachaudhary2016@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:32|71.81 KB|Sent|Message for arunachaudhary2016@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1217|eCAS_MutualFunds@manipaltechnologies.com|arunachaudhuri@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:32|52.2 KB|Sent|Message for arunachaudhuri@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1218|eCAS_MutualFunds@manipaltechnologies.com|arunachaugule8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:32|61.13 KB|Sent|Message for arunachaugule8@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1219|eCAS_MutualFunds@manipaltechnologies.com|arunachauhan1975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:32|71.7 KB|Sent|Message for arunachauhan1975@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1220|eCAS_MutualFunds@manipaltechnologies.com|arunachauhan2327@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:32|48.48 KB|Sent|Message for arunachauhan2327@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1221|eCAS_MutualFunds@manipaltechnologies.com|arunachauhan2327@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:33|48.51 KB|Sent|Message for arunachauhan2327@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1222|eCAS_MutualFunds@manipaltechnologies.com|arunachavan8888@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:33|57.09 KB|Sent|Message for arunachavan8888@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1223|eCAS_MutualFunds@manipaltechnologies.com|arunachbl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:33|60.98 KB|Sent|Message for arunachbl@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1224|eCAS_MutualFunds@manipaltechnologies.com|arunachellam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:33|54.83 KB|Sent|Message for arunachellam@gmail.com accepted by 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1225|eCAS_MutualFunds@manipaltechnologies.com|arunachhetri16@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:34|67.09 KB|Sent|Message for arunachhetri16@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1226|eCAS_MutualFunds@manipaltechnologies.com|arunachilakamarri1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:34|61.42 KB|Sent|Message for arunachilakamarri1978@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1227|eCAS_MutualFunds@manipaltechnologies.com|arunachinnanaik@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:34|74.39 KB|Sent|Message for arunachinnanaik@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1228|eCAS_MutualFunds@manipaltechnologies.com|arunachinnappreddy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:34|57.97 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1229|eCAS_MutualFunds@manipaltechnologies.com|arunachougule@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:34|63.69 KB|Sent|Message for arunachougule@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1230|eCAS_MutualFunds@manipaltechnologies.com|arunachu081@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:34|50.71 KB|Sent|Message for arunachu081@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1231|eCAS_MutualFunds@manipaltechnologies.com|arunaci@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|76.7 KB|Sent|Message for arunaci@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1232|eCAS_MutualFunds@manipaltechnologies.com|arunacnu30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|71.54 KB|Sent|Message for arunacnu30@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1233|eCAS_MutualFunds@manipaltechnologies.com|arunacon@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|52.09 KB|Sent|Message for arunacon@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1234|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|81.93 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunacv968@yahoo.com to suppression list because delivery has failed 18 times. +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1235|eCAS_MutualFunds@manipaltechnologies.com|arunacv968@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:35|55.17 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunacv968@yahoo.com to suppression list because delivery has failed 18 times. +1236|eCAS_MutualFunds@manipaltechnologies.com|arunad22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|52.56 KB|Sent|Message for arunad22@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1237|eCAS_MutualFunds@manipaltechnologies.com|arunadadhwal1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|56.17 KB|Sent|Message for arunadadhwal1@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1238|eCAS_MutualFunds@manipaltechnologies.com|arunadaga@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|59.25 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunadaga@gmail.com to suppression list because delivery has failed 18 times. +1239|eCAS_MutualFunds@manipaltechnologies.com|arunadahilkar11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|56.27 KB|Sent|Message for arunadahilkar11@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1240|eCAS_MutualFunds@manipaltechnologies.com|arunadaka@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|57.87 KB|Sent|Message for arunadaka@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1241|eCAS_MutualFunds@manipaltechnologies.com|arunadakua@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:36|65.28 KB|Sent|Message for arunadakua@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1242|eCAS_MutualFunds@manipaltechnologies.com|arunadamania24@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|78.37 KB|Sent|Message for arunadamania24@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1243|eCAS_MutualFunds@manipaltechnologies.com|arunadangale8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|56.27 KB|Sent|Message for arunadangale8@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1244|eCAS_MutualFunds@manipaltechnologies.com|arunadarla@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|85.8 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunadarla@yahoo.co.in to suppression list because delivery has failed 18 times. +1245|eCAS_MutualFunds@manipaltechnologies.com|arunadate77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|49.73 KB|Sent|Message for arunadate77@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1246|eCAS_MutualFunds@manipaltechnologies.com|arunadatla02@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|64.73 KB|Sent|Message for arunadatla02@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1247|eCAS_MutualFunds@manipaltechnologies.com|arunadatta30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:37|68.53 KB|Sent|Message for arunadatta30@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1248|eCAS_MutualFunds@manipaltechnologies.com|arunadavid31@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|63.56 KB|Sent|Message for arunadavid31@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1249|eCAS_MutualFunds@manipaltechnologies.com|arunadavidrajan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|59.23 KB|Sent|Message for arunadavidrajan@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1250|eCAS_MutualFunds@manipaltechnologies.com|arunadaya1811@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.16 KB|Sent|Message for arunadaya1811@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1251|eCAS_MutualFunds@manipaltechnologies.com|arunadayakar1273@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|55.64 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunadayakar1273@gmail.com to suppression list because delivery has failed 18 times. +1252|eCAS_MutualFunds@manipaltechnologies.com|arunadayal2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:38|65.09 KB|Sent|Message for arunadayal2@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1253|eCAS_MutualFunds@manipaltechnologies.com|arunadayal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:39|51.83 KB|Sent|Message for arunadayal@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1254|eCAS_MutualFunds@manipaltechnologies.com|arunadchotaliya2018@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:39|67.82 KB|Sent|Message for arunadchotaliya2018@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1255|eCAS_MutualFunds@manipaltechnologies.com|arunadecca59@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:39|61.04 KB|Sent|Message for arunadecca59@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1256|eCAS_MutualFunds@manipaltechnologies.com|arunadeepthi87@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:39|67.6 KB|Sent|Message for arunadeepthi87@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1257|eCAS_MutualFunds@manipaltechnologies.com|arunadegaonkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:39|58.26 KB|Sent|Message for arunadegaonkar@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1258|eCAS_MutualFunds@manipaltechnologies.com|arunadeokate68@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:39|65.47 KB|Sent|Message for arunadeokate68@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1259|eCAS_MutualFunds@manipaltechnologies.com|arunadesai101@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:40|53.5 KB|Sent|Message for arunadesai101@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1260|eCAS_MutualFunds@manipaltechnologies.com|arunadeshmukh85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:40|67.24 KB|Sent|Message for arunadeshmukh85@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1261|eCAS_MutualFunds@manipaltechnologies.com|arunadessai@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:40|51.17 KB|Sent|Message for arunadessai@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1262|eCAS_MutualFunds@manipaltechnologies.com|arunadevarajan65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:40|72.37 KB|Sent|Message for arunadevarajan65@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1263|eCAS_MutualFunds@manipaltechnologies.com|arunadevi.raji@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:40|62.1 KB|Sent|Message for arunadevi.raji@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1264|eCAS_MutualFunds@manipaltechnologies.com|arunadevi.t0101@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:41|60.84 KB|Sent|Message for arunadevi.t0101@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1265|eCAS_MutualFunds@manipaltechnologies.com|arunadevi.v@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:41|51.85 KB|Sent|Message for arunadevi.v@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1266|eCAS_MutualFunds@manipaltechnologies.com|arunadevi01052018@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:41|57.98 KB|Sent|Message for arunadevi01052018@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1267|eCAS_MutualFunds@manipaltechnologies.com|arunadevi0353@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:41|55.85 KB|Sent|Message for arunadevi0353@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1268|eCAS_MutualFunds@manipaltechnologies.com|arunadevi0583@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:41|48.14 KB|Sent|Message for arunadevi0583@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1269|eCAS_MutualFunds@manipaltechnologies.com|arunadevi1958@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:41|62.31 KB|Sent|Message for arunadevi1958@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1270|eCAS_MutualFunds@manipaltechnologies.com|arunadevi19833@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:42|61.12 KB|Sent|Message for arunadevi19833@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1271|eCAS_MutualFunds@manipaltechnologies.com|arunadevi222.k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:42|68.58 KB|Sent|Message for arunadevi222.k@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1272|eCAS_MutualFunds@manipaltechnologies.com|arunadevi222@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:42|60.25 KB|Sent|Message for arunadevi222@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1273|eCAS_MutualFunds@manipaltechnologies.com|arunadevi2694@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:42|52.0 KB|Sent|Message for arunadevi2694@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1274|eCAS_MutualFunds@manipaltechnologies.com|arunadevi61@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:42|75.34 KB|Sent|Message for arunadevi61@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1275|eCAS_MutualFunds@manipaltechnologies.com|arunadevi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:42|60.65 KB|Sent|Message for arunadevi@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1276|eCAS_MutualFunds@manipaltechnologies.com|arunadevibodapati@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:43|103.5 KB|Sent|Message for arunadevibodapati@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1277|eCAS_MutualFunds@manipaltechnologies.com|arunadevibodapati@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:43|54.9 KB|Sent|Message for arunadevibodapati@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1278|eCAS_MutualFunds@manipaltechnologies.com|arunadevibodapati@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:43|54.87 KB|Sent|Message for arunadevibodapati@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1279|eCAS_MutualFunds@manipaltechnologies.com|arunadevicdpo@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:43|62.18 KB|Sent|Message for arunadevicdpo@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1280|eCAS_MutualFunds@manipaltechnologies.com|arunadevichiluveru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:43|52.11 KB|Sent|Message for arunadevichiluveru@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1281|eCAS_MutualFunds@manipaltechnologies.com|arunadevigupta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:44|67.89 KB|Sent|Message for arunadevigupta@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1282|eCAS_MutualFunds@manipaltechnologies.com|arunadevilautre46@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:44|56.37 KB|Sent|Message for arunadevilautre46@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1283|eCAS_MutualFunds@manipaltechnologies.com|arunadevimeena@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:44|51.18 KB|Sent|Message for arunadevimeena@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1284|eCAS_MutualFunds@manipaltechnologies.com|arunadevimsc96@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:44|57.94 KB|Sent|Message for arunadevimsc96@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1285|eCAS_MutualFunds@manipaltechnologies.com|arunadevin@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:44|76.75 KB|Sent|Message for arunadevin@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1286|eCAS_MutualFunds@manipaltechnologies.com|arunadevisahu133@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:44|67.38 KB|Sent|Message for arunadevisahu133@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1287|eCAS_MutualFunds@manipaltechnologies.com|arunadgale21@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|50.1 KB|Sent|Message for arunadgale21@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1288|eCAS_MutualFunds@manipaltechnologies.com|arunadha1729@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|51.87 KB|Sent|Message for arunadha1729@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1289|eCAS_MutualFunds@manipaltechnologies.com|arunadhanapal@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|68.24 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunadhanapal@yahoo.co.in to suppression list because delivery has failed 18 times. +1290|eCAS_MutualFunds@manipaltechnologies.com|arunadhe1974@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|64.11 KB|Sent|Message for arunadhe1974@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1291|eCAS_MutualFunds@manipaltechnologies.com|arunadhesingu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|59.32 KB|Sent|Message for arunadhesingu@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1292|eCAS_MutualFunds@manipaltechnologies.com|arunadhikari645@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:45|51.74 KB|Sent|Message for arunadhikari645@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1293|eCAS_MutualFunds@manipaltechnologies.com|arunadhikary9062@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:46|65.61 KB|Sent|Message for arunadhikary9062@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1294|eCAS_MutualFunds@manipaltechnologies.com|arunadhingra75@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:46|88.61 KB|Sent|Message for arunadhingra75@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1295|eCAS_MutualFunds@manipaltechnologies.com|arunadhya1990@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:46|54.91 KB|Sent|Message for arunadhya1990@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1296|eCAS_MutualFunds@manipaltechnologies.com|arunaditya02@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:46|57.64 KB|Sent|Message for arunaditya02@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1297|eCAS_MutualFunds@manipaltechnologies.com|arunaditya1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:46|57.07 KB|Sent|Message for arunaditya1978@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1298|eCAS_MutualFunds@manipaltechnologies.com|arunadixit60@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:47|54.05 KB|Sent|Message for arunadixit60@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1299|eCAS_MutualFunds@manipaltechnologies.com|arunadommati78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:47|62.26 KB|Sent|Message for arunadommati78@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1300|eCAS_MutualFunds@manipaltechnologies.com|arunadondapati1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:47|57.26 KB|Sent|Message for arunadondapati1985@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1301|eCAS_MutualFunds@manipaltechnologies.com|arunadss@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:47|56.28 KB|Sent|Message for arunadss@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1302|eCAS_MutualFunds@manipaltechnologies.com|arunadubey74@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:47|48.79 KB|Sent|Message for arunadubey74@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1303|eCAS_MutualFunds@manipaltechnologies.com|arunadudhande547@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:47|57.3 KB|Sent|Message for arunadudhande547@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1304|eCAS_MutualFunds@manipaltechnologies.com|arunadutta42@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|66.45 KB|Sent|Message for arunadutta42@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1305|eCAS_MutualFunds@manipaltechnologies.com|arunadv2003@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|79.33 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunadv2003@yahoo.co.in to suppression list because delivery has failed 18 times. +1306|eCAS_MutualFunds@manipaltechnologies.com|arunadvlko@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|78.97 KB|Sent|Message for arunadvlko@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1307|eCAS_MutualFunds@manipaltechnologies.com|arunadvocate@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|52.36 KB|Sent|Message for arunadvocate@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +1308|eCAS_MutualFunds@manipaltechnologies.com|arunadwivedi1969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|60.99 KB|Sent|Message for arunadwivedi1969@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1309|eCAS_MutualFunds@manipaltechnologies.com|arunaece@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:48|56.8 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunaece@yahoo.co.in to suppression list because delivery has failed 18 times. +1310|eCAS_MutualFunds@manipaltechnologies.com|arunaeh1970@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:49|81.15 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1311|eCAS_MutualFunds@manipaltechnologies.com|arunaelangovan01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:49|52.15 KB|Sent|Message for arunaelangovan01@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1312|eCAS_MutualFunds@manipaltechnologies.com|arunaever25@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:49|54.79 KB|Sent|Message for arunaever25@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1313|eCAS_MutualFunds@manipaltechnologies.com|arunaexport1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:49|64.81 KB|Sent|Message for arunaexport1@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1314|eCAS_MutualFunds@manipaltechnologies.com|arunaexport1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:49|62.11 KB|Sent|Message for arunaexport1@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1315|eCAS_MutualFunds@manipaltechnologies.com|arunaflexo@mail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.04 KB|HardFail|Permanent SMTP delivery error when sending to 74.208.5.22:25 (mx01.mail.com) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1316|eCAS_MutualFunds@manipaltechnologies.com|arunaframji@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|54.54 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunaframji@yahoo.com to suppression list because delivery has failed 18 times. +1317|eCAS_MutualFunds@manipaltechnologies.com|arunafre2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|55.44 KB|Sent|Message for arunafre2014@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1318|eCAS_MutualFunds@manipaltechnologies.com|arunagaddam123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|51.67 KB|Sent|Message for arunagaddam123@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1319|eCAS_MutualFunds@manipaltechnologies.com|arunagaddam77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|51.86 KB|Sent|Message for arunagaddam77@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1320|eCAS_MutualFunds@manipaltechnologies.com|arunagadilkar1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:50|51.41 KB|Sent|Message for arunagadilkar1983@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1321|eCAS_MutualFunds@manipaltechnologies.com|arunagaikar320@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:51|61.45 KB|Sent|Message for arunagaikar320@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1322|eCAS_MutualFunds@manipaltechnologies.com|arunagaikwad30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:51|93.02 KB|Sent|Message for arunagaikwad30@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1323|eCAS_MutualFunds@manipaltechnologies.com|arunagaikwad77036@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:51|65.52 KB|Sent|Message for arunagaikwad77036@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1324|eCAS_MutualFunds@manipaltechnologies.com|arunaganesh29@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:51|59.93 KB|Sent|Message for arunaganesh29@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1325|eCAS_MutualFunds@manipaltechnologies.com|arunaganeshprabhu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:51|55.19 KB|Sent|Message for arunaganeshprabhu@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1326|eCAS_MutualFunds@manipaltechnologies.com|arunagangana333@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:51|51.03 KB|Sent|Message for arunagangana333@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1327|eCAS_MutualFunds@manipaltechnologies.com|arunaganlary@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:52|55.14 KB|Sent|Message for arunaganlary@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1328|eCAS_MutualFunds@manipaltechnologies.com|arunagarg3105@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:52|56.58 KB|Sent|Message for arunagarg3105@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1329|eCAS_MutualFunds@manipaltechnologies.com|arunagargadvocate@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:52|52.16 KB|Sent|Message for arunagargadvocate@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1330|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal02693@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:52|57.61 KB|Sent|Message for arunagarwal02693@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1331|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal0801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:52|53.14 KB|Sent|Message for arunagarwal0801@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1332|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal100889@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:52|49.62 KB|Sent|Message for arunagarwal100889@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1333|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal1234.a@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|62.21 KB|Sent|Message for arunagarwal1234.a@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1334|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|70.1 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunagarwal123@yahoo.com to suppression list because delivery has failed 18 times. +1335|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal201@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|51.97 KB|Sent|Message for arunagarwal201@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1336|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal316@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|64.25 KB|Sent|Message for arunagarwal316@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1337|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal7172@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|61.29 KB|Sent|Message for arunagarwal7172@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1338|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal725@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:53|50.98 KB|Sent|Message for arunagarwal725@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1339|eCAS_MutualFunds@manipaltechnologies.com|arunagarwal_ksp@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:54|60.78 KB|Sent|Message for arunagarwal_ksp@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1340|eCAS_MutualFunds@manipaltechnologies.com|arunagarwala469@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:54|59.15 KB|Sent|Message for arunagarwala469@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1341|eCAS_MutualFunds@manipaltechnologies.com|arunagbhat0660@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:54|58.18 KB|Sent|Message for arunagbhat0660@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1342|eCAS_MutualFunds@manipaltechnologies.com|arunagbhat1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:54|50.63 KB|Sent|Message for arunagbhat1@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1343|eCAS_MutualFunds@manipaltechnologies.com|arunagc1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:54|52.03 KB|Sent|Message for arunagc1985@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1344|eCAS_MutualFunds@manipaltechnologies.com|arunagcr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|54.36 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunagcr@yahoo.com to suppression list because delivery has failed 18 times. +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1345|eCAS_MutualFunds@manipaltechnologies.com|arunagg198052@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|64.02 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunagg198052@yahoo.com to suppression list because delivery has failed 18 times. +1346|eCAS_MutualFunds@manipaltechnologies.com|arunaghaisas15@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|56.84 KB|Sent|Message for arunaghaisas15@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1347|eCAS_MutualFunds@manipaltechnologies.com|arunagiri.anand@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|68.67 KB|Sent|Message for arunagiri.anand@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1348|eCAS_MutualFunds@manipaltechnologies.com|arunagiri0573@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|51.73 KB|Sent|Message for arunagiri0573@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1349|eCAS_MutualFunds@manipaltechnologies.com|arunagiri16381@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:55|62.02 KB|Sent|Message for arunagiri16381@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1350|eCAS_MutualFunds@manipaltechnologies.com|arunagiri2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:56|108.86 KB|Sent|Message for arunagiri2@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1351|eCAS_MutualFunds@manipaltechnologies.com|arunagiriast@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:56|59.05 KB|Sent|Message for arunagiriast@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1352|eCAS_MutualFunds@manipaltechnologies.com|arunagiriayyalusamy1972@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:56|57.5 KB|Sent|Message for arunagiriayyalusamy1972@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1353|eCAS_MutualFunds@manipaltechnologies.com|arunagirib@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:56|64.03 KB|Sent|Message for arunagirib@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1354|eCAS_MutualFunds@manipaltechnologies.com|arunagirija11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:56|75.54 KB|Sent|Message for arunagirija11@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1355|eCAS_MutualFunds@manipaltechnologies.com|arunagirisanthanam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:56|58.53 KB|Sent|Message for arunagirisanthanam@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1356|eCAS_MutualFunds@manipaltechnologies.com|arunagirish17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:57|68.4 KB|Sent|Message for arunagirish17@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1357|eCAS_MutualFunds@manipaltechnologies.com|arunagirish17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:57|59.97 KB|Sent|Message for arunagirish17@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1358|eCAS_MutualFunds@manipaltechnologies.com|arunagirivijaya.10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:57|58.11 KB|Sent|Message for arunagirivijaya.10@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1359|eCAS_MutualFunds@manipaltechnologies.com|arunagm331@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:57|53.83 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1360|eCAS_MutualFunds@manipaltechnologies.com|arunagmayya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:57|68.38 KB|Sent|Message for arunagmayya@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1361|eCAS_MutualFunds@manipaltechnologies.com|arunagodbole@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:57|68.82 KB|Sent|Message for arunagodbole@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1362|eCAS_MutualFunds@manipaltechnologies.com|arunagoel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|83.19 KB|Sent|Message for arunagoel@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1363|eCAS_MutualFunds@manipaltechnologies.com|arunagoelag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|69.05 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunagoelag@yahoo.com to suppression list because delivery has failed 18 times. +1364|eCAS_MutualFunds@manipaltechnologies.com|arunagogoi126@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|62.96 KB|Sent|Message for arunagogoi126@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1365|eCAS_MutualFunds@manipaltechnologies.com|arunagolaji@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|84.99 KB|Sent|Message for arunagolaji@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1366|eCAS_MutualFunds@manipaltechnologies.com|arunagone786@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:58|63.57 KB|Sent|Message for arunagone786@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1367|eCAS_MutualFunds@manipaltechnologies.com|arunagopal89@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:59|75.96 KB|Sent|Message for arunagopal89@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1368|eCAS_MutualFunds@manipaltechnologies.com|arunagopi24@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:59|64.34 KB|Sent|Message for arunagopi24@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1369|eCAS_MutualFunds@manipaltechnologies.com|arunagorantalahnk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:59|56.37 KB|Sent|Message for arunagorantalahnk@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1370|eCAS_MutualFunds@manipaltechnologies.com|arunagorantalahnk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:59|56.48 KB|Sent|Message for arunagorantalahnk@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1371|eCAS_MutualFunds@manipaltechnologies.com|arunagotety14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:59|71.22 KB|Sent|Message for arunagotety14@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1372|eCAS_MutualFunds@manipaltechnologies.com|arunagoturu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:02:59|54.3 KB|Sent|Message for arunagoturu@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1373|eCAS_MutualFunds@manipaltechnologies.com|arunagowtham51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:00|52.19 KB|Sent|Message for arunagowtham51@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1374|eCAS_MutualFunds@manipaltechnologies.com|arunagpt31@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:00|67.71 KB|Sent|Message for arunagpt31@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1375|eCAS_MutualFunds@manipaltechnologies.com|arunagr78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:00|50.94 KB|Sent|Message for arunagr78@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1376|eCAS_MutualFunds@manipaltechnologies.com|arunagrahri07778@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:00|52.05 KB|Sent|Message for arunagrahri07778@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1377|eCAS_MutualFunds@manipaltechnologies.com|arunagrawal1001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:00|67.2 KB|Sent|Message for arunagrawal1001@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1378|eCAS_MutualFunds@manipaltechnologies.com|arunagrawal1865@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:01|56.48 KB|Sent|Message for arunagrawal1865@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1379|eCAS_MutualFunds@manipaltechnologies.com|arunagrawal1910@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:01|58.48 KB|Sent|Message for arunagrawal1910@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1380|eCAS_MutualFunds@manipaltechnologies.com|arunagrawal1910@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:01|50.23 KB|Sent|Message for arunagrawal1910@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1381|eCAS_MutualFunds@manipaltechnologies.com|arunagrawal218@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:01|62.79 KB|Sent|Message for arunagrawal218@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1382|eCAS_MutualFunds@manipaltechnologies.com|arunagrawal2778@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:01|49.58 KB|Sent|Message for arunagrawal2778@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1383|eCAS_MutualFunds@manipaltechnologies.com|arunagrawal401@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:01|57.34 KB|Sent|Message for arunagrawal401@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1384|eCAS_MutualFunds@manipaltechnologies.com|arunagrawal875@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:02|51.33 KB|Sent|Message for arunagrawal875@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1385|eCAS_MutualFunds@manipaltechnologies.com|arunagrawal953@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:02|55.15 KB|Sent|Message for arunagrawal953@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1386|eCAS_MutualFunds@manipaltechnologies.com|arunagrover83@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:02|66.89 KB|Sent|Message for arunagrover83@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1387|eCAS_MutualFunds@manipaltechnologies.com|arunaguhan19@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:02|57.51 KB|Sent|Message for arunaguhan19@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1388|eCAS_MutualFunds@manipaltechnologies.com|arunagulgulia@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:02|51.08 KB|Sent|Message for arunagulgulia@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1389|eCAS_MutualFunds@manipaltechnologies.com|arunagundeboyina@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:03|63.65 KB|Sent|Message for arunagundeboyina@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1390|eCAS_MutualFunds@manipaltechnologies.com|arunagup2810@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:03|57.03 KB|Sent|Message for arunagup2810@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1391|eCAS_MutualFunds@manipaltechnologies.com|arunagupta0111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:03|52.15 KB|Sent|Message for arunagupta0111@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1392|eCAS_MutualFunds@manipaltechnologies.com|arunagupta219@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:03|55.63 KB|Sent|Message for arunagupta219@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1393|eCAS_MutualFunds@manipaltechnologies.com|arunagupta219@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:03|54.69 KB|Sent|Message for arunagupta219@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1394|eCAS_MutualFunds@manipaltechnologies.com|arunagurav7500@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|54.22 KB|Sent|Message for arunagurav7500@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1395|eCAS_MutualFunds@manipaltechnologies.com|arunagurung11@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|64.23 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunagurung11@yahoo.co.in to suppression list because delivery has failed 18 times. +1396|eCAS_MutualFunds@manipaltechnologies.com|arunah889@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|49.93 KB|Sent|Message for arunah889@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1397|eCAS_MutualFunds@manipaltechnologies.com|arunahandloomfabrics@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|56.58 KB|Sent|Message for arunahandloomfabrics@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1398|eCAS_MutualFunds@manipaltechnologies.com|arunahari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|48.92 KB|Sent|Message for arunahari@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1399|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:04|50.72 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunaharne_24@yahoo.co.in to suppression list because delivery has failed 18 times. +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1400|eCAS_MutualFunds@manipaltechnologies.com|arunaharne_24@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|58.38 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunaharne_24@yahoo.co.in to suppression list because delivery has failed 18 times. +1401|eCAS_MutualFunds@manipaltechnologies.com|arunaheliprep@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|85.08 KB|Sent|Message for arunaheliprep@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1402|eCAS_MutualFunds@manipaltechnologies.com|arunaher40@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|53.96 KB|Sent|Message for arunaher40@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1403|eCAS_MutualFunds@manipaltechnologies.com|arunaher87@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|50.52 KB|Sent|Message for arunaher87@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1404|eCAS_MutualFunds@manipaltechnologies.com|arunaherekar1311960@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|57.4 KB|Sent|Message for arunaherekar1311960@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1405|eCAS_MutualFunds@manipaltechnologies.com|arunahire.aa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:05|62.96 KB|Sent|Message for arunahire.aa@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1406|eCAS_MutualFunds@manipaltechnologies.com|arunahirwar469@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:06|49.86 KB|Sent|Message for arunahirwar469@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1407|eCAS_MutualFunds@manipaltechnologies.com|arunahjoshi60@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:06|51.63 KB|Sent|Message for arunahjoshi60@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1408|eCAS_MutualFunds@manipaltechnologies.com|arunahks485@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:06|52.19 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1409|eCAS_MutualFunds@manipaltechnologies.com|arunahlawat333@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:06|49.7 KB|Sent|Message for arunahlawat333@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1410|eCAS_MutualFunds@manipaltechnologies.com|arunahonnappa9907@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:06|62.31 KB|Sent|Message for arunahonnappa9907@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1411|eCAS_MutualFunds@manipaltechnologies.com|arunahotkar555@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:06|54.99 KB|Sent|Message for arunahotkar555@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1412|eCAS_MutualFunds@manipaltechnologies.com|arunahsharma60@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:07|92.59 KB|Sent|Message for arunahsharma60@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1413|eCAS_MutualFunds@manipaltechnologies.com|arunahuja1970@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:07|54.17 KB|Sent|Message for arunahuja1970@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1414|eCAS_MutualFunds@manipaltechnologies.com|arunaich7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:07|71.96 KB|Sent|Message for arunaich7@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1415|eCAS_MutualFunds@manipaltechnologies.com|arunaigsm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:07|57.66 KB|Sent|Message for arunaigsm@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1416|eCAS_MutualFunds@manipaltechnologies.com|arunailay@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:07|51.86 KB|Sent|Message for arunailay@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1417|eCAS_MutualFunds@manipaltechnologies.com|arunairjet@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:07|51.59 KB|Sent|Message for arunairjet@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1418|eCAS_MutualFunds@manipaltechnologies.com|arunaiyengar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|67.77 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunaiyengar@yahoo.com to suppression list because delivery has failed 18 times. +1419|eCAS_MutualFunds@manipaltechnologies.com|arunaj.sr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|52.72 KB|Sent|Message for arunaj.sr@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1420|eCAS_MutualFunds@manipaltechnologies.com|arunaj472@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|54.2 KB|Sent|Message for arunaj472@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1421|eCAS_MutualFunds@manipaltechnologies.com|arunaj918@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|48.4 KB|Sent|Message for arunaj918@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1422|eCAS_MutualFunds@manipaltechnologies.com|arunajadapp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|61.43 KB|Sent|Message for arunajadapp@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1423|eCAS_MutualFunds@manipaltechnologies.com|arunajadesan1709@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:08|49.73 KB|Sent|Message for arunajadesan1709@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +1424|eCAS_MutualFunds@manipaltechnologies.com|arunajadhao33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|54.84 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunajadhao33@gmail.com to suppression list because delivery has failed 18 times. +1425|eCAS_MutualFunds@manipaltechnologies.com|arunajadhav1965@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|61.77 KB|Sent|Message for arunajadhav1965@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1426|eCAS_MutualFunds@manipaltechnologies.com|arunajadhav330@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|58.32 KB|Sent|Message for arunajadhav330@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1427|eCAS_MutualFunds@manipaltechnologies.com|arunajadhav5372@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|62.9 KB|Sent|Message for arunajadhav5372@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1428|eCAS_MutualFunds@manipaltechnologies.com|arunajadhav86870@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|84.47 KB|Sent|Message for arunajadhav86870@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1429|eCAS_MutualFunds@manipaltechnologies.com|arunajadhav@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:09|56.62 KB|Sent|Message for arunajadhav@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1430|eCAS_MutualFunds@manipaltechnologies.com|arunajagwan123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:10|57.76 KB|Sent|Message for arunajagwan123@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1431|eCAS_MutualFunds@manipaltechnologies.com|arunajain134@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:10|69.54 KB|Sent|Message for arunajain134@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1432|eCAS_MutualFunds@manipaltechnologies.com|arunajaischool@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:10|72.87 KB|Sent|Message for arunajaischool@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1433|eCAS_MutualFunds@manipaltechnologies.com|arunajames8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:10|57.68 KB|Sent|Message for arunajames8@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1434|eCAS_MutualFunds@manipaltechnologies.com|arunajani.nur@charusat.ac.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:10|52.42 KB|Sent|Message for arunajani.nur@charusat.ac.in accepted by 172.253.118.27:25 (aspmx.l.google.com) +1435|eCAS_MutualFunds@manipaltechnologies.com|arunajay33228@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:10|50.83 KB|Sent|Message for arunajay33228@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1436|eCAS_MutualFunds@manipaltechnologies.com|arunajayanthi12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.72 KB|Sent|Message for arunajayanthi12@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1437|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|58.91 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunajayaraman@yahoo.com to suppression list because delivery has failed 18 times. +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1438|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|56.1 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunajayaraman@yahoo.com to suppression list because delivery has failed 18 times. +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1439|eCAS_MutualFunds@manipaltechnologies.com|arunajayaraman@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|55.5 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunajayaraman@yahoo.com to suppression list because delivery has failed 18 times. +1440|eCAS_MutualFunds@manipaltechnologies.com|arunajayasankaran@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:11|59.06 KB|Sent|Message for arunajayasankaran@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1441|eCAS_MutualFunds@manipaltechnologies.com|arunajcbm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:12|76.36 KB|Sent|Message for arunajcbm@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1442|eCAS_MutualFunds@manipaltechnologies.com|arunajee01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:12|57.42 KB|Sent|Message for arunajee01@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1443|eCAS_MutualFunds@manipaltechnologies.com|arunajee1976@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:12|61.2 KB|Sent|Message for arunajee1976@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1444|eCAS_MutualFunds@manipaltechnologies.com|arunajena9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:12|60.74 KB|Sent|Message for arunajena9@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1445|eCAS_MutualFunds@manipaltechnologies.com|arunajit.bhattacharya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:12|66.5 KB|Sent|Message for arunajit.bhattacharya@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1446|eCAS_MutualFunds@manipaltechnologies.com|arunajit15@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:12|59.19 KB|Sent|Message for arunajit15@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1447|eCAS_MutualFunds@manipaltechnologies.com|arunajit15@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:13|55.6 KB|Sent|Message for arunajit15@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1448|eCAS_MutualFunds@manipaltechnologies.com|arunajmer@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:13|54.38 KB|Sent|Message for arunajmer@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1449|eCAS_MutualFunds@manipaltechnologies.com|arunajogdeo@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:13|57.71 KB|Sent|Message for arunajogdeo@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1450|eCAS_MutualFunds@manipaltechnologies.com|arunajoshi1593@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:13|62.36 KB|Sent|Message for arunajoshi1593@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1451|eCAS_MutualFunds@manipaltechnologies.com|arunajoshi2457@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:13|56.66 KB|Sent|Message for arunajoshi2457@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1452|eCAS_MutualFunds@manipaltechnologies.com|arunajoshi444@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:13|52.03 KB|Sent|Message for arunajoshi444@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1453|eCAS_MutualFunds@manipaltechnologies.com|arunajoshi700@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:14|71.86 KB|Sent|Message for arunajoshi700@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1454|eCAS_MutualFunds@manipaltechnologies.com|arunajoshu2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:14|56.54 KB|Sent|Message for arunajoshu2@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1455|eCAS_MutualFunds@manipaltechnologies.com|arunajoshua@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:14|69.95 KB|Sent|Message for arunajoshua@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1456|eCAS_MutualFunds@manipaltechnologies.com|arunajuba@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:14|67.61 KB|Sent|Message for arunajuba@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1457|eCAS_MutualFunds@manipaltechnologies.com|arunajune72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:14|51.46 KB|Sent|Message for arunajune72@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1458|eCAS_MutualFunds@manipaltechnologies.com|arunajupaka72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:14|50.03 KB|Sent|Message for arunajupaka72@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1459|eCAS_MutualFunds@manipaltechnologies.com|arunajyothi2509@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:15|66.58 KB|Sent|Message for arunajyothi2509@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1460|eCAS_MutualFunds@manipaltechnologies.com|arunajyothi2761973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:15|51.37 KB|Sent|Message for arunajyothi2761973@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1461|eCAS_MutualFunds@manipaltechnologies.com|arunajyothi360@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:15|61.86 KB|Sent|Message for arunajyothi360@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1462|eCAS_MutualFunds@manipaltechnologies.com|arunajyothi3787@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:15|65.07 KB|Sent|Message for arunajyothi3787@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1463|eCAS_MutualFunds@manipaltechnologies.com|arunajyothi984@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:15|51.89 KB|Sent|Message for arunajyothi984@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1464|eCAS_MutualFunds@manipaltechnologies.com|arunajyoti10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:15|57.41 KB|Sent|Message for arunajyoti10@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1465|eCAS_MutualFunds@manipaltechnologies.com|arunak0604@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:16|62.36 KB|Sent|Message for arunak0604@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1466|eCAS_MutualFunds@manipaltechnologies.com|arunak206@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:16|61.4 KB|Sent|Message for arunak206@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1467|eCAS_MutualFunds@manipaltechnologies.com|arunak4433@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:16|80.97 KB|Sent|Message for arunak4433@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1468|eCAS_MutualFunds@manipaltechnologies.com|arunak9820@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:16|56.53 KB|Sent|Message for arunak9820@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1469|eCAS_MutualFunds@manipaltechnologies.com|arunakachhawa1994@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:16|58.39 KB|Sent|Message for arunakachhawa1994@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1470|eCAS_MutualFunds@manipaltechnologies.com|arunakadam023@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:17|65.1 KB|Sent|Message for arunakadam023@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1471|eCAS_MutualFunds@manipaltechnologies.com|arunakadam510@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:17|61.9 KB|Sent|Message for arunakadam510@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1472|eCAS_MutualFunds@manipaltechnologies.com|arunakak115@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:17|68.26 KB|Sent|Message for arunakak115@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1473|eCAS_MutualFunds@manipaltechnologies.com|arunakakadiya64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:17|70.59 KB|Sent|Message for arunakakadiya64@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1474|eCAS_MutualFunds@manipaltechnologies.com|arunakalia2008@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:17|60.98 KB|Sent|Message for arunakalia2008@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1475|eCAS_MutualFunds@manipaltechnologies.com|arunakalsait77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:17|53.21 KB|Sent|Message for arunakalsait77@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +1476|eCAS_MutualFunds@manipaltechnologies.com|arunakamble21@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|64.65 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunakamble21@yahoo.com to suppression list because delivery has failed 18 times. +1477|eCAS_MutualFunds@manipaltechnologies.com|arunakanthij@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|70.06 KB|Sent|Message for arunakanthij@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1478|eCAS_MutualFunds@manipaltechnologies.com|arunakapoor1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|53.93 KB|Sent|Message for arunakapoor1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1479|eCAS_MutualFunds@manipaltechnologies.com|arunakapsenagle@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|58.16 KB|Sent|Message for arunakapsenagle@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +1480|eCAS_MutualFunds@manipaltechnologies.com|arunakar67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|63.13 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunakar67@gmail.com to suppression list because delivery has failed 18 times. +1481|eCAS_MutualFunds@manipaltechnologies.com|arunakarnati82@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:18|52.47 KB|Sent|Message for arunakarnati82@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1482|eCAS_MutualFunds@manipaltechnologies.com|arunakarra1953@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:19|87.72 KB|Sent|Message for arunakarra1953@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1483|eCAS_MutualFunds@manipaltechnologies.com|arunakarrao@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:19|62.65 KB|Sent|Message for arunakarrao@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1484|eCAS_MutualFunds@manipaltechnologies.com|arunakarri018@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:19|66.12 KB|Sent|Message for arunakarri018@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1485|eCAS_MutualFunds@manipaltechnologies.com|arunakarthik.077@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:19|75.52 KB|Sent|Message for arunakarthik.077@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1486|eCAS_MutualFunds@manipaltechnologies.com|arunakaruppannan75@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:19|55.22 KB|Sent|Message for arunakaruppannan75@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1487|eCAS_MutualFunds@manipaltechnologies.com|arunakasibattla9427@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:20|50.64 KB|Sent|Message for arunakasibattla9427@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1488|eCAS_MutualFunds@manipaltechnologies.com|arunakate62@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:20|64.12 KB|Sent|Message for arunakate62@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1489|eCAS_MutualFunds@manipaltechnologies.com|arunakate62@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:20|55.4 KB|Sent|Message for arunakate62@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1490|eCAS_MutualFunds@manipaltechnologies.com|arunakaveti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:20|73.96 KB|Sent|Message for arunakaveti@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1491|eCAS_MutualFunds@manipaltechnologies.com|arunakclt195@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:20|57.8 KB|Sent|Message for arunakclt195@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1492|eCAS_MutualFunds@manipaltechnologies.com|arunakd07@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:21|48.52 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1493|eCAS_MutualFunds@manipaltechnologies.com|arunakduri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:21|64.13 KB|Sent|Message for arunakduri@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1494|eCAS_MutualFunds@manipaltechnologies.com|arunakela446@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:21|57.72 KB|Sent|Message for arunakela446@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1495|eCAS_MutualFunds@manipaltechnologies.com|arunakhairnar.09@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:21|61.89 KB|Sent|Message for arunakhairnar.09@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1496|eCAS_MutualFunds@manipaltechnologies.com|arunakhalkho@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:21|51.96 KB|Sent|Message for arunakhalkho@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1497|eCAS_MutualFunds@manipaltechnologies.com|arunakhatkar68@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:21|52.15 KB|Sent|Message for arunakhatkar68@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1498|eCAS_MutualFunds@manipaltechnologies.com|arunakhorate@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:22|59.71 KB|Sent|Message for arunakhorate@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1499|eCAS_MutualFunds@manipaltechnologies.com|arunakhuli20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:22|79.64 KB|Sent|Message for arunakhuli20@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1500|eCAS_MutualFunds@manipaltechnologies.com|arunakhuli20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:22|67.0 KB|Sent|Message for arunakhuli20@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1501|eCAS_MutualFunds@manipaltechnologies.com|arunakirangangiredla@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:22|55.41 KB|Sent|Message for arunakirangangiredla@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1502|eCAS_MutualFunds@manipaltechnologies.com|arunakirloskar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:22|51.84 KB|Sent|Message for arunakirloskar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1503|eCAS_MutualFunds@manipaltechnologies.com|arunakkin@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:23|61.57 KB|Sent|Message for arunakkin@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1504|eCAS_MutualFunds@manipaltechnologies.com|arunakn1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:23|52.86 KB|Sent|Message for arunakn1978@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1505|eCAS_MutualFunds@manipaltechnologies.com|arunaknmsc2010@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:23|67.34 KB|Sent|Message for arunaknmsc2010@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1506|eCAS_MutualFunds@manipaltechnologies.com|arunakodali2266@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:23|65.06 KB|Sent|Message for arunakodali2266@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1507|eCAS_MutualFunds@manipaltechnologies.com|arunakommareddy77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:23|71.31 KB|Sent|Message for arunakommareddy77@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1508|eCAS_MutualFunds@manipaltechnologies.com|arunakommoju2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:24|62.33 KB|Sent|Message for arunakommoju2@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1509|eCAS_MutualFunds@manipaltechnologies.com|arunakongjenbam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:24|54.58 KB|Sent|Message for arunakongjenbam@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1510|eCAS_MutualFunds@manipaltechnologies.com|arunakorroti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:24|73.49 KB|Sent|Message for arunakorroti@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1511|eCAS_MutualFunds@manipaltechnologies.com|arunakota606@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:24|61.67 KB|Sent|Message for arunakota606@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1512|eCAS_MutualFunds@manipaltechnologies.com|arunakothari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:24|64.69 KB|Sent|Message for arunakothari@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1513|eCAS_MutualFunds@manipaltechnologies.com|arunakr_in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|54.71 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunakr_in@yahoo.co.in to suppression list because delivery has failed 18 times. +1514|eCAS_MutualFunds@manipaltechnologies.com|arunakrishna913@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|52.24 KB|Sent|Message for arunakrishna913@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1515|eCAS_MutualFunds@manipaltechnologies.com|arunakrishnan53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|56.55 KB|Sent|Message for arunakrishnan53@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1516|eCAS_MutualFunds@manipaltechnologies.com|arunakrishnan53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|65.82 KB|Sent|Message for arunakrishnan53@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1517|eCAS_MutualFunds@manipaltechnologies.com|arunakrishnan53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:25|58.22 KB|Sent|Message for arunakrishnan53@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1518|eCAS_MutualFunds@manipaltechnologies.com|arunakshi62@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:26|64.1 KB|Sent|Message for arunakshi62@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1519|eCAS_MutualFunds@manipaltechnologies.com|arunaktsp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:26|58.05 KB|Sent|Message for arunaktsp@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1520|eCAS_MutualFunds@manipaltechnologies.com|arunaku.samalo568@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:26|74.4 KB|Sent|Message for arunaku.samalo568@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1521|eCAS_MutualFunds@manipaltechnologies.com|arunakulal027@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:26|55.27 KB|Sent|Message for arunakulal027@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1522|eCAS_MutualFunds@manipaltechnologies.com|arunakulkarni15@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:26|61.95 KB|Sent|Message for arunakulkarni15@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1523|eCAS_MutualFunds@manipaltechnologies.com|arunakumar.n@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:27|51.97 KB|Sent|Message for arunakumar.n@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1524|eCAS_MutualFunds@manipaltechnologies.com|arunakumar2015lenka@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:27|56.26 KB|Sent|Message for arunakumar2015lenka@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1525|eCAS_MutualFunds@manipaltechnologies.com|arunakumar502@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:27|52.68 KB|Sent|Message for arunakumar502@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1526|eCAS_MutualFunds@manipaltechnologies.com|arunakumar73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:27|49.74 KB|Sent|Message for arunakumar73@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1527|eCAS_MutualFunds@manipaltechnologies.com|arunakumar93mech@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:27|50.08 KB|Sent|Message for arunakumar93mech@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1528|eCAS_MutualFunds@manipaltechnologies.com|arunakumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:27|60.8 KB|Sent|Message for arunakumar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1529|eCAS_MutualFunds@manipaltechnologies.com|arunakumar_hk@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:28|80.03 KB|Sent|Message for arunakumar_hk@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1530|eCAS_MutualFunds@manipaltechnologies.com|arunakumara1852@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:28|55.38 KB|Sent|Message for arunakumara1852@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1531|eCAS_MutualFunds@manipaltechnologies.com|arunakumarb175@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:28|49.03 KB|Sent|Message for arunakumarb175@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1532|eCAS_MutualFunds@manipaltechnologies.com|arunakumarch@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:28|59.52 KB|Sent|Message for arunakumarch@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1533|eCAS_MutualFunds@manipaltechnologies.com|arunakumardash7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:28|57.44 KB|Sent|Message for arunakumardash7@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1534|eCAS_MutualFunds@manipaltechnologies.com|arunakumari.gotivada@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:28|55.46 KB|Sent|Message for arunakumari.gotivada@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1535|eCAS_MutualFunds@manipaltechnologies.com|arunakumari.kalepu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:29|61.69 KB|Sent|Message for arunakumari.kalepu@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1536|eCAS_MutualFunds@manipaltechnologies.com|arunakumari1431a@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:29|52.34 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1537|eCAS_MutualFunds@manipaltechnologies.com|arunakumari8715@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:29|61.3 KB|Sent|Message for arunakumari8715@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1538|eCAS_MutualFunds@manipaltechnologies.com|arunakumari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:29|52.76 KB|Sent|Message for arunakumari@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1539|eCAS_MutualFunds@manipaltechnologies.com|arunakumari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:29|55.91 KB|Sent|Message for arunakumari@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1540|eCAS_MutualFunds@manipaltechnologies.com|arunakumari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:29|57.58 KB|Sent|Message for arunakumari@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1541|eCAS_MutualFunds@manipaltechnologies.com|arunakumari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:30|48.56 KB|Sent|Message for arunakumari@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1542|eCAS_MutualFunds@manipaltechnologies.com|arunakumari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:30|56.27 KB|Sent|Message for arunakumari@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1543|eCAS_MutualFunds@manipaltechnologies.com|arunakumari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:30|64.61 KB|Sent|Message for arunakumari@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1544|eCAS_MutualFunds@manipaltechnologies.com|arunakumaribandam646@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:30|68.46 KB|Sent|Message for arunakumaribandam646@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1545|eCAS_MutualFunds@manipaltechnologies.com|arunakumarichatrathi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:31|50.04 KB|Sent|Message for arunakumarichatrathi@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1546|eCAS_MutualFunds@manipaltechnologies.com|arunakumarigummella@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:31|57.27 KB|Sent|Message for arunakumarigummella@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1547|eCAS_MutualFunds@manipaltechnologies.com|arunakumarikasthuri1963@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:31|49.19 KB|HardFail|Permanent SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1548|eCAS_MutualFunds@manipaltechnologies.com|arunakumarim417@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:31|61.18 KB|Sent|Message for arunakumarim417@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1549|eCAS_MutualFunds@manipaltechnologies.com|arunakumarinayunipatruni@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:31|51.54 KB|Sent|Message for arunakumarinayunipatruni@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1550|eCAS_MutualFunds@manipaltechnologies.com|arunakumariprabhakar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:32|69.77 KB|Sent|Message for arunakumariprabhakar@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1551|eCAS_MutualFunds@manipaltechnologies.com|arunakumarirejeti000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:32|48.82 KB|Sent|Message for arunakumarirejeti000@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1552|eCAS_MutualFunds@manipaltechnologies.com|arunakumarisunkara@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:32|76.2 KB|Sent|Message for arunakumarisunkara@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1553|eCAS_MutualFunds@manipaltechnologies.com|arunakumaritechnical@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:32|47.71 KB|Sent|Message for arunakumaritechnical@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1554|eCAS_MutualFunds@manipaltechnologies.com|arunakumarivigrahala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:32|52.37 KB|Sent|Message for arunakumarivigrahala@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1555|eCAS_MutualFunds@manipaltechnologies.com|arunakumarivuriti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:32|49.92 KB|Sent|Message for arunakumarivuriti@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1556|eCAS_MutualFunds@manipaltechnologies.com|arunakumarivzm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:33|58.21 KB|Sent|Message for arunakumarivzm@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1557|eCAS_MutualFunds@manipaltechnologies.com|arunakumarmajhi4929@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:33|52.52 KB|Sent|Message for arunakumarmajhi4929@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1558|eCAS_MutualFunds@manipaltechnologies.com|arunakumarmr9535@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:33|50.27 KB|Sent|Message for arunakumarmr9535@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1559|eCAS_MutualFunds@manipaltechnologies.com|arunakumarmuduli@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:33|51.6 KB|Sent|Message for arunakumarmuduli@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1560|eCAS_MutualFunds@manipaltechnologies.com|arunakumarrout@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:33|67.32 KB|Sent|Message for arunakumarrout@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1561|eCAS_MutualFunds@manipaltechnologies.com|arunakumarsahoo189@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:33|63.94 KB|Sent|Message for arunakumarsahoo189@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1562|eCAS_MutualFunds@manipaltechnologies.com|arunakumarsahu390@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:34|58.34 KB|Sent|Message for arunakumarsahu390@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1563|eCAS_MutualFunds@manipaltechnologies.com|arunakurian1990@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:34|68.87 KB|Sent|Message for arunakurian1990@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1564|eCAS_MutualFunds@manipaltechnologies.com|arunakvenkatesh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:34|56.45 KB|Sent|Message for arunakvenkatesh@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1565|eCAS_MutualFunds@manipaltechnologies.com|arunakylas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:34|54.27 KB|Sent|Message for arunakylas@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1566|eCAS_MutualFunds@manipaltechnologies.com|arunalacha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:34|84.35 KB|Sent|Message for arunalacha@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1567|eCAS_MutualFunds@manipaltechnologies.com|arunalag.mi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:34|49.89 KB|Sent|Message for arunalag.mi@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1568|eCAS_MutualFunds@manipaltechnologies.com|arunalaguma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:35|62.21 KB|Sent|Message for arunalaguma@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1569|eCAS_MutualFunds@manipaltechnologies.com|arunalahamge11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:35|77.85 KB|Sent|Message for arunalahamge11@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1570|eCAS_MutualFunds@manipaltechnologies.com|arunalakna@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:35|64.6 KB|Sent|Message for arunalakna@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1571|eCAS_MutualFunds@manipaltechnologies.com|arunalakshmi.b@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:35|57.76 KB|Sent|Message for arunalakshmi.b@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1572|eCAS_MutualFunds@manipaltechnologies.com|arunalakshmi.nookala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:35|50.89 KB|Sent|Message for arunalakshmi.nookala@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1573|eCAS_MutualFunds@manipaltechnologies.com|arunalankapalli14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:36|51.58 KB|HardFail|Permanent SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1574|eCAS_MutualFunds@manipaltechnologies.com|arunalase@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:36|73.44 KB|Sent|Message for arunalase@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1575|eCAS_MutualFunds@manipaltechnologies.com|arunalavil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:36|70.6 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1575|eCAS_MutualFunds@manipaltechnologies.com|arunalavil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:36|70.6 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1575|eCAS_MutualFunds@manipaltechnologies.com|arunalavil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:36|70.6 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1575|eCAS_MutualFunds@manipaltechnologies.com|arunalavil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:36|70.6 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1575|eCAS_MutualFunds@manipaltechnologies.com|arunalavil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:36|70.6 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1575|eCAS_MutualFunds@manipaltechnologies.com|arunalavil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:36|70.6 KB|Sent|Message for arunalavil@yahoo.com accepted by 67.195.204.79:25 (mta6.am0.yahoodns.net) +1576|eCAS_MutualFunds@manipaltechnologies.com|arunalavudya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:36|64.2 KB|Sent|Message for arunalavudya@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1577|eCAS_MutualFunds@manipaltechnologies.com|arunalawade17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:36|65.29 KB|Sent|Message for arunalawade17@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1578|eCAS_MutualFunds@manipaltechnologies.com|arunalaxminarayanamurthy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:37|64.22 KB|Sent|Message for arunalaxminarayanamurthy@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1579|eCAS_MutualFunds@manipaltechnologies.com|arunalayahc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:37|59.55 KB|Sent|Message for arunalayahc@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1580|eCAS_MutualFunds@manipaltechnologies.com|arunalbaxi358@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:37|64.67 KB|Sent|Message for arunalbaxi358@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1581|eCAS_MutualFunds@manipaltechnologies.com|arunalegaonkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:37|60.84 KB|Sent|Message for arunalegaonkar@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1582|eCAS_MutualFunds@manipaltechnologies.com|arunalexmathew@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:37|56.88 KB|Sent|Message for arunalexmathew@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1583|eCAS_MutualFunds@manipaltechnologies.com|arunalfredminz@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:37|65.67 KB|Sent|Message for arunalfredminz@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1584|eCAS_MutualFunds@manipaltechnologies.com|arunalimbu477@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|74.19 KB|Sent|Message for arunalimbu477@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1585|eCAS_MutualFunds@manipaltechnologies.com|arunalingaiah@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|52.24 KB|Sent|Message for arunalingaiah@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1586|eCAS_MutualFunds@manipaltechnologies.com|arunaljoshi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|72.74 KB|Sent|Message for arunaljoshi@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1587|eCAS_MutualFunds@manipaltechnologies.com|arunallayanavar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|50.39 KB|Sent|Message for arunallayanavar@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1588|eCAS_MutualFunds@manipaltechnologies.com|arunallow2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|67.48 KB|Sent|Message for arunallow2@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +1589|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande409@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:38|51.95 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunalokhande409@gmail.com to suppression list because delivery has failed 18 times. +1590|eCAS_MutualFunds@manipaltechnologies.com|arunalokhande941@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:39|59.62 KB|Sent|Message for arunalokhande941@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1591|eCAS_MutualFunds@manipaltechnologies.com|arunaloysius@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:39|74.58 KB|Sent|Message for arunaloysius@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1592|eCAS_MutualFunds@manipaltechnologies.com|arunalphones@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:39|78.03 KB|Sent|Message for arunalphones@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1593|eCAS_MutualFunds@manipaltechnologies.com|arunaluckytiwari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:39|58.82 KB|Sent|Message for arunaluckytiwari@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1594|eCAS_MutualFunds@manipaltechnologies.com|arunalulu76@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:39|63.99 KB|Sent|Message for arunalulu76@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1595|eCAS_MutualFunds@manipaltechnologies.com|arunam1310@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:39|54.17 KB|Sent|Message for arunam1310@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1596|eCAS_MutualFunds@manipaltechnologies.com|arunam84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:40|88.88 KB|Sent|Message for arunam84@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1597|eCAS_MutualFunds@manipaltechnologies.com|arunam84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:40|69.28 KB|Sent|Message for arunam84@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1598|eCAS_MutualFunds@manipaltechnologies.com|arunam84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:40|69.25 KB|Sent|Message for arunam84@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1599|eCAS_MutualFunds@manipaltechnologies.com|arunam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:40|78.2 KB|Sent|Message for arunam@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1600|eCAS_MutualFunds@manipaltechnologies.com|arunam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:40|48.4 KB|Sent|Message for arunam@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1601|eCAS_MutualFunds@manipaltechnologies.com|arunamadakasira@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:41|59.91 KB|Sent|Message for arunamadakasira@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1602|eCAS_MutualFunds@manipaltechnologies.com|arunamadhavm.1979@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:41|56.22 KB|Sent|Message for arunamadhavm.1979@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1603|eCAS_MutualFunds@manipaltechnologies.com|arunamadini990@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:41|55.31 KB|Sent|Message for arunamadini990@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1604|eCAS_MutualFunds@manipaltechnologies.com|arunamadupu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:41|53.98 KB|Sent|Message for arunamadupu@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1605|eCAS_MutualFunds@manipaltechnologies.com|arunamahadik44@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:41|58.81 KB|Sent|Message for arunamahadik44@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1606|eCAS_MutualFunds@manipaltechnologies.com|arunamahapatra2012@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:41|48.69 KB|Sent|Message for arunamahapatra2012@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1607|eCAS_MutualFunds@manipaltechnologies.com|arunamahapatra831@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:42|52.44 KB|Sent|Message for arunamahapatra831@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1608|eCAS_MutualFunds@manipaltechnologies.com|arunamaheshwaram87@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:42|75.66 KB|Sent|Message for arunamaheshwaram87@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1609|eCAS_MutualFunds@manipaltechnologies.com|arunamahunta02@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:42|74.9 KB|Sent|Message for arunamahunta02@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1610|eCAS_MutualFunds@manipaltechnologies.com|arunamaji2002@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:42|74.78 KB|Sent|Message for arunamaji2002@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1611|eCAS_MutualFunds@manipaltechnologies.com|arunamaldhure@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:42|62.93 KB|Sent|Message for arunamaldhure@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1612|eCAS_MutualFunds@manipaltechnologies.com|arunamallya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:42|71.46 KB|Sent|Message for arunamallya@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1613|eCAS_MutualFunds@manipaltechnologies.com|arunamandal163@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:43|59.08 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1613|eCAS_MutualFunds@manipaltechnologies.com|arunamandal163@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:43|59.08 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1613|eCAS_MutualFunds@manipaltechnologies.com|arunamandal163@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:43|59.08 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1613|eCAS_MutualFunds@manipaltechnologies.com|arunamandal163@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:43|59.08 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1613|eCAS_MutualFunds@manipaltechnologies.com|arunamandal163@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:43|59.08 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1613|eCAS_MutualFunds@manipaltechnologies.com|arunamandal163@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:43|59.08 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1614|eCAS_MutualFunds@manipaltechnologies.com|arunamangal81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:43|57.62 KB|Sent|Message for arunamangal81@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1615|eCAS_MutualFunds@manipaltechnologies.com|arunamangal81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:43|77.5 KB|Sent|Message for arunamangal81@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1616|eCAS_MutualFunds@manipaltechnologies.com|arunamanickam55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:43|54.06 KB|Sent|Message for arunamanickam55@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1617|eCAS_MutualFunds@manipaltechnologies.com|arunamanohar61@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:43|80.72 KB|Sent|Message for arunamanohar61@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1618|eCAS_MutualFunds@manipaltechnologies.com|arunamar157@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|63.07 KB|Sent|Message for arunamar157@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1619|eCAS_MutualFunds@manipaltechnologies.com|arunamardikar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|60.7 KB|Sent|Message for arunamardikar@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1620|eCAS_MutualFunds@manipaltechnologies.com|arunamari469@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|68.17 KB|Sent|Message for arunamari469@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta6.am0.yahoodns.net) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1621|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|66.59 KB|Sent|Message for arunamaria@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1622|eCAS_MutualFunds@manipaltechnologies.com|arunamaria@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|67.62 KB|Sent|Message for arunamaria@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +1623|eCAS_MutualFunds@manipaltechnologies.com|arunamaru11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:44|49.35 KB|Sent|Message for arunamaru11@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1624|eCAS_MutualFunds@manipaltechnologies.com|arunamasih655@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:45|67.06 KB|Sent|Message for arunamasih655@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1625|eCAS_MutualFunds@manipaltechnologies.com|arunamat9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:45|64.33 KB|Sent|Message for arunamat9@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1626|eCAS_MutualFunds@manipaltechnologies.com|arunamatani347@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:45|57.15 KB|Sent|Message for arunamatani347@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1627|eCAS_MutualFunds@manipaltechnologies.com|arunamathur25@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:45|57.6 KB|Sent|Message for arunamathur25@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1628|eCAS_MutualFunds@manipaltechnologies.com|arunambekar1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:45|60.4 KB|Sent|Message for arunambekar1962@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1629|eCAS_MutualFunds@manipaltechnologies.com|arunambekar21@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|56.69 KB|Sent|Message for arunambekar21@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1630|eCAS_MutualFunds@manipaltechnologies.com|arunamberkhane@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|78.3 KB|Sent|Message for arunamberkhane@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1631|eCAS_MutualFunds@manipaltechnologies.com|arunameha@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|75.83 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunameha@yahoo.co.in to suppression list because delivery has failed 18 times. +1632|eCAS_MutualFunds@manipaltechnologies.com|arunameher011@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|49.13 KB|Sent|Message for arunameher011@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1633|eCAS_MutualFunds@manipaltechnologies.com|arunameidili@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:46|78.75 KB|Sent|Message for arunameidili@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1634|eCAS_MutualFunds@manipaltechnologies.com|arunamenon451@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|56.42 KB|Sent|Message for arunamenon451@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1635|eCAS_MutualFunds@manipaltechnologies.com|arunamesa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|65.81 KB|Sent|Message for arunamesa@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +1636|eCAS_MutualFunds@manipaltechnologies.com|arunameshram276@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|66.25 KB|Sent|Message for arunameshram276@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1637|eCAS_MutualFunds@manipaltechnologies.com|arunamfa@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|52.52 KB|Sent|Message for arunamfa@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +1638|eCAS_MutualFunds@manipaltechnologies.com|arunamhatre18@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:47|57.67 KB|Sent|Message for arunamhatre18@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1639|eCAS_MutualFunds@manipaltechnologies.com|arunamili581@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|48.83 KB|Sent|Message for arunamili581@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1640|eCAS_MutualFunds@manipaltechnologies.com|arunamin786@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|82.07 KB|Sent|Message for arunamin786@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx01.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx01.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.57.152.5:25 (mx02.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.57.156.30:25 (mx01.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.57.152.5:25 (mx02.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.42.251.62:25 (mx01.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx01.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx01.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.56.9.31:25 (mx02.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.42.251.62:25 (mx02.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.42.251.62:25 (mx02.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.57.156.30:25 (mx01.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx01.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|An error occurred while sending the message to 17.57.155.25:25 (mx02.mail.icloud.com) +1641|eCAS_MutualFunds@manipaltechnologies.com|arunamin@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|64.88 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunamin@icloud.com to suppression list because delivery has failed 18 times. +1642|eCAS_MutualFunds@manipaltechnologies.com|arunaminj1991@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|67.74 KB|Sent|Message for arunaminj1991@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1643|eCAS_MutualFunds@manipaltechnologies.com|arunamishra475@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:48|63.3 KB|Sent|Message for arunamishra475@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1644|eCAS_MutualFunds@manipaltechnologies.com|arunamishra821@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:49|59.55 KB|Sent|Message for arunamishra821@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1645|eCAS_MutualFunds@manipaltechnologies.com|arunamlw4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:49|64.35 KB|Sent|Message for arunamlw4@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1646|eCAS_MutualFunds@manipaltechnologies.com|arunamma.tarimela@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:49|55.56 KB|Sent|Message for arunamma.tarimela@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1647|eCAS_MutualFunds@manipaltechnologies.com|arunamma724@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:49|53.04 KB|Sent|Message for arunamma724@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1648|eCAS_MutualFunds@manipaltechnologies.com|arunammaarunamma55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:49|49.91 KB|Sent|Message for arunammaarunamma55@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1649|eCAS_MutualFunds@manipaltechnologies.com|arunammani7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:49|51.75 KB|Sent|Message for arunammani7@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1650|eCAS_MutualFunds@manipaltechnologies.com|arunamobiles666@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:50|63.1 KB|Sent|Message for arunamobiles666@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1651|eCAS_MutualFunds@manipaltechnologies.com|arunamodi1070@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:50|68.43 KB|Sent|Message for arunamodi1070@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1652|eCAS_MutualFunds@manipaltechnologies.com|arunamohanty58@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:50|52.94 KB|Sent|Message for arunamohanty58@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1653|eCAS_MutualFunds@manipaltechnologies.com|arunampgp_kolnad@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:50|67.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1653|eCAS_MutualFunds@manipaltechnologies.com|arunampgp_kolnad@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:50|67.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1653|eCAS_MutualFunds@manipaltechnologies.com|arunampgp_kolnad@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:50|67.73 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1653|eCAS_MutualFunds@manipaltechnologies.com|arunampgp_kolnad@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:50|67.73 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1653|eCAS_MutualFunds@manipaltechnologies.com|arunampgp_kolnad@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:50|67.73 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1653|eCAS_MutualFunds@manipaltechnologies.com|arunampgp_kolnad@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:50|67.73 KB|Sent|Message for arunampgp_kolnad@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1654|eCAS_MutualFunds@manipaltechnologies.com|arunamridha72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:50|64.3 KB|Sent|Message for arunamridha72@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1655|eCAS_MutualFunds@manipaltechnologies.com|arunamridha72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:51|64.24 KB|Sent|Message for arunamridha72@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1656|eCAS_MutualFunds@manipaltechnologies.com|arunamsaruna@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:51|62.68 KB|Sent|Message for arunamsaruna@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1657|eCAS_MutualFunds@manipaltechnologies.com|arunamshu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:51|48.85 KB|Sent|Message for arunamshu@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1658|eCAS_MutualFunds@manipaltechnologies.com|arunamsm92@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:51|60.2 KB|Sent|Message for arunamsm92@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1659|eCAS_MutualFunds@manipaltechnologies.com|arunamtech2010@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:51|59.52 KB|Sent|Message for arunamtech2010@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1660|eCAS_MutualFunds@manipaltechnologies.com|arunamtrishulwar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:52|58.08 KB|Sent|Message for arunamtrishulwar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1661|eCAS_MutualFunds@manipaltechnologies.com|arunamukherjee532@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:52|48.96 KB|Sent|Message for arunamukherjee532@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1662|eCAS_MutualFunds@manipaltechnologies.com|arunamukti.minz@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:52|61.8 KB|Sent|Message for arunamukti.minz@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1663|eCAS_MutualFunds@manipaltechnologies.com|arunamukund@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:52|71.99 KB|Sent|Message for arunamukund@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1664|eCAS_MutualFunds@manipaltechnologies.com|arunamunje@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:52|58.21 KB|Sent|Message for arunamunje@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1665|eCAS_MutualFunds@manipaltechnologies.com|arunamuralivk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:52|49.74 KB|Sent|Message for arunamuralivk@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1666|eCAS_MutualFunds@manipaltechnologies.com|arunamurty19@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|52.68 KB|Sent|Message for arunamurty19@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1667|eCAS_MutualFunds@manipaltechnologies.com|arunamurugesan01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|70.6 KB|Sent|Message for arunamurugesan01@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1668|eCAS_MutualFunds@manipaltechnologies.com|arunamusicals1933@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|54.58 KB|Sent|Message for arunamusicals1933@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1669|eCAS_MutualFunds@manipaltechnologies.com|arunamusicalsnew@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|55.93 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunamusicalsnew@yahoo.co.in to suppression list because delivery has failed 18 times. +1670|eCAS_MutualFunds@manipaltechnologies.com|arunan.2481989@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:53|70.11 KB|Sent|Message for arunan.2481989@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1671|eCAS_MutualFunds@manipaltechnologies.com|arunan.gowda@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:54|79.38 KB|Sent|Message for arunan.gowda@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1672|eCAS_MutualFunds@manipaltechnologies.com|arunan.grm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:54|73.29 KB|Sent|Message for arunan.grm@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1673|eCAS_MutualFunds@manipaltechnologies.com|arunan2756@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:54|57.16 KB|Sent|Message for arunan2756@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1674|eCAS_MutualFunds@manipaltechnologies.com|arunan5776@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:54|62.09 KB|Sent|Message for arunan5776@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1675|eCAS_MutualFunds@manipaltechnologies.com|arunanagalwade869@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:54|51.57 KB|Sent|Message for arunanagalwade869@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1676|eCAS_MutualFunds@manipaltechnologies.com|arunanagar0@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:55|59.45 KB|Sent|Message for arunanagar0@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1677|eCAS_MutualFunds@manipaltechnologies.com|arunanagaraj20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:55|62.46 KB|Sent|Message for arunanagaraj20@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1678|eCAS_MutualFunds@manipaltechnologies.com|arunanagavelli@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:55|52.42 KB|Sent|Message for arunanagavelli@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1679|eCAS_MutualFunds@manipaltechnologies.com|arunanagesh709@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:55|51.91 KB|Sent|Message for arunanagesh709@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1680|eCAS_MutualFunds@manipaltechnologies.com|arunanagunuri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:55|56.57 KB|Sent|Message for arunanagunuri@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1681|eCAS_MutualFunds@manipaltechnologies.com|arunanair2916@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:55|57.2 KB|Sent|Message for arunanair2916@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1682|eCAS_MutualFunds@manipaltechnologies.com|arunanairk86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:56|56.67 KB|Sent|Message for arunanairk86@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1683|eCAS_MutualFunds@manipaltechnologies.com|arunanakti6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:56|55.97 KB|Sent|Message for arunanakti6@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1684|eCAS_MutualFunds@manipaltechnologies.com|arunanamdeo96286@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:56|48.87 KB|Sent|Message for arunanamdeo96286@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1685|eCAS_MutualFunds@manipaltechnologies.com|arunanan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:56|63.78 KB|Sent|Message for arunanan@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1686|eCAS_MutualFunds@manipaltechnologies.com|arunananavare072@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:56|56.83 KB|Sent|Message for arunananavare072@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1687|eCAS_MutualFunds@manipaltechnologies.com|arunanand30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:56|75.02 KB|Sent|Message for arunanand30@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1688|eCAS_MutualFunds@manipaltechnologies.com|arunanandabi@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:57|56.05 KB|Sent|Message for arunanandabi@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1689|eCAS_MutualFunds@manipaltechnologies.com|arunanandkumar@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:57|64.79 KB|Sent|Message for arunanandkumar@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +1690|eCAS_MutualFunds@manipaltechnologies.com|arunanandkumarm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:57|69.68 KB|Sent|Message for arunanandkumarm@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1691|eCAS_MutualFunds@manipaltechnologies.com|arunanandula1629@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:57|53.93 KB|Sent|Message for arunanandula1629@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1692|eCAS_MutualFunds@manipaltechnologies.com|arunananth@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:57|60.14 KB|Sent|Message for arunananth@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1693|eCAS_MutualFunds@manipaltechnologies.com|arunanaru4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|56.34 KB|Sent|Message for arunanaru4@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1694|eCAS_MutualFunds@manipaltechnologies.com|arunanath64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|68.37 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunanath64@gmail.com to suppression list because delivery has failed 18 times. +1695|eCAS_MutualFunds@manipaltechnologies.com|arunanath9954@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|51.46 KB|Sent|Message for arunanath9954@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1696|eCAS_MutualFunds@manipaltechnologies.com|arunanath@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|71.47 KB|Sent|Message for arunanath@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1697|eCAS_MutualFunds@manipaltechnologies.com|arunanaughty55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|57.35 KB|Sent|Message for arunanaughty55@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1698|eCAS_MutualFunds@manipaltechnologies.com|arunanayak3312@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:58|57.05 KB|Sent|Message for arunanayak3312@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1699|eCAS_MutualFunds@manipaltechnologies.com|arunanayr.an@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:59|57.87 KB|Sent|Message for arunanayr.an@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1700|eCAS_MutualFunds@manipaltechnologies.com|arunanbu5145@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:59|79.05 KB|Sent|Message for arunanbu5145@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1701|eCAS_MutualFunds@manipaltechnologies.com|arunanc23@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:59|82.91 KB|Sent|Message for arunanc23@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1702|eCAS_MutualFunds@manipaltechnologies.com|arunanch9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:59|54.65 KB|Sent|Message for arunanch9@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1703|eCAS_MutualFunds@manipaltechnologies.com|arunanchal_s@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:03:59|67.9 KB|Sent|Message for arunanchal_s@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1704|eCAS_MutualFunds@manipaltechnologies.com|arunandrewb4u@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:00|55.87 KB|Sent|Message for arunandrewb4u@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1705|eCAS_MutualFunds@manipaltechnologies.com|arunaneesh1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:00|60.76 KB|Sent|Message for arunaneesh1985@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1706|eCAS_MutualFunds@manipaltechnologies.com|arunaneesh1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:00|59.75 KB|Sent|Message for arunaneesh1985@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1707|eCAS_MutualFunds@manipaltechnologies.com|arunanenth@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:00|75.25 KB|Sent|Message for arunanenth@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1708|eCAS_MutualFunds@manipaltechnologies.com|arunangaj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:00|67.93 KB|Sent|Message for arunangaj@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1709|eCAS_MutualFunds@manipaltechnologies.com|arunangan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:00|68.68 KB|Sent|Message for arunangan@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1710|eCAS_MutualFunds@manipaltechnologies.com|arunangshu.guha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:01|64.14 KB|Sent|Message for arunangshu.guha@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1711|eCAS_MutualFunds@manipaltechnologies.com|arunangshu.kundu.2013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:01|66.03 KB|Sent|Message for arunangshu.kundu.2013@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1712|eCAS_MutualFunds@manipaltechnologies.com|arunangshu.saley@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:01|52.16 KB|Sent|Message for arunangshu.saley@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1713|eCAS_MutualFunds@manipaltechnologies.com|arunangshu1965@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:01|51.0 KB|Sent|Message for arunangshu1965@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1714|eCAS_MutualFunds@manipaltechnologies.com|arunangshu75@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:01|56.26 KB|Sent|Message for arunangshu75@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1715|eCAS_MutualFunds@manipaltechnologies.com|arunangshu90@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|101.33 KB|Sent|Message for arunangshu90@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1716|eCAS_MutualFunds@manipaltechnologies.com|arunangshu@nitj.ac.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|59.95 KB|Sent|Message for arunangshu@nitj.ac.in accepted by 142.251.175.27:25 (aspmx.l.google.com) +1717|eCAS_MutualFunds@manipaltechnologies.com|arunangshu@nitj.ac.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|57.74 KB|Sent|Message for arunangshu@nitj.ac.in accepted by 142.251.175.27:25 (aspmx.l.google.com) +1718|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_1960@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|53.43 KB|Sent|Message for arunangshu_1960@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|Maximum number of delivery attempts (18) has been reached. Added arunangshu_sunsign@yahoo.co.in to suppression list because delivery has failed 18 times. +1719|eCAS_MutualFunds@manipaltechnologies.com|arunangshu_sunsign@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|54.39 KB|Sent|Message for arunangshu_sunsign@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net). Recipient removed from suppression list +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1720|eCAS_MutualFunds@manipaltechnologies.com|arunangshubasu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:02|62.77 KB|Sent|Message for arunangshubasu@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +1721|eCAS_MutualFunds@manipaltechnologies.com|arunangshubiswas56@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|52.62 KB|Sent|Message for arunangshubiswas56@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1722|eCAS_MutualFunds@manipaltechnologies.com|arunangshubiswas56@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|69.83 KB|Sent|Message for arunangshubiswas56@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1723|eCAS_MutualFunds@manipaltechnologies.com|arunangshud@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|72.02 KB|Sent|Message for arunangshud@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1724|eCAS_MutualFunds@manipaltechnologies.com|arunangshude@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|73.66 KB|Sent|Message for arunangshude@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +1725|eCAS_MutualFunds@manipaltechnologies.com|arunangshunanda89@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|58.01 KB|Sent|Message for arunangshunanda89@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1726|eCAS_MutualFunds@manipaltechnologies.com|arunangshusingha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:03|55.15 KB|Sent|Message for arunangshusingha@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1727|eCAS_MutualFunds@manipaltechnologies.com|arunangshuu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:04|72.83 KB|Sent|Message for arunangshuu@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1728|eCAS_MutualFunds@manipaltechnologies.com|arunangsu77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:04|76.37 KB|Sent|Message for arunangsu77@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1729|eCAS_MutualFunds@manipaltechnologies.com|arunangsubadsa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:04|69.1 KB|Sent|Message for arunangsubadsa@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1730|eCAS_MutualFunds@manipaltechnologies.com|arunangsudesarkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:04|60.73 KB|Sent|Message for arunangsudesarkar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1731|eCAS_MutualFunds@manipaltechnologies.com|arunangsughosh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:04|67.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1731|eCAS_MutualFunds@manipaltechnologies.com|arunangsughosh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:04|67.3 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1731|eCAS_MutualFunds@manipaltechnologies.com|arunangsughosh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:04|67.3 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1731|eCAS_MutualFunds@manipaltechnologies.com|arunangsughosh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:04|67.3 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1731|eCAS_MutualFunds@manipaltechnologies.com|arunangsughosh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:04|67.3 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1731|eCAS_MutualFunds@manipaltechnologies.com|arunangsughosh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:04|67.3 KB|Sent|Message for arunangsughosh@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1732|eCAS_MutualFunds@manipaltechnologies.com|arunangsumandal68@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:05|75.48 KB|Sent|Message for arunangsumandal68@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1733|eCAS_MutualFunds@manipaltechnologies.com|arunani2907@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:05|57.57 KB|Sent|Message for arunani2907@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1734|eCAS_MutualFunds@manipaltechnologies.com|arunanigam39@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:05|62.22 KB|Sent|Message for arunanigam39@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1735|eCAS_MutualFunds@manipaltechnologies.com|arunanil004@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:05|71.83 KB|Sent|Message for arunanil004@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1736|eCAS_MutualFunds@manipaltechnologies.com|arunanima68@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:05|49.39 KB|Sent|Message for arunanima68@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1737|eCAS_MutualFunds@manipaltechnologies.com|arunanirban1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:05|51.31 KB|Sent|Message for arunanirban1962@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1738|eCAS_MutualFunds@manipaltechnologies.com|arunanishp95@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:06|52.81 KB|Sent|Message for arunanishp95@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1739|eCAS_MutualFunds@manipaltechnologies.com|arunanisingh2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:06|57.32 KB|Sent|Message for arunanisingh2@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1740|eCAS_MutualFunds@manipaltechnologies.com|arunanitag99@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:06|70.47 KB|Sent|Message for arunanitag99@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1741|eCAS_MutualFunds@manipaltechnologies.com|arunanitha05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:06|72.74 KB|Sent|Message for arunanitha05@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1742|eCAS_MutualFunds@manipaltechnologies.com|arunanithiyan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:06|71.63 KB|Sent|Message for arunanithiyan@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1743|eCAS_MutualFunds@manipaltechnologies.com|arunanjali.shirbhate@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:06|66.4 KB|Sent|Message for arunanjali.shirbhate@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1744|eCAS_MutualFunds@manipaltechnologies.com|arunanjalikumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:07|50.97 KB|Sent|Message for arunanjalikumar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1745|eCAS_MutualFunds@manipaltechnologies.com|arunanjalireshma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:07|67.14 KB|Sent|Message for arunanjalireshma@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1746|eCAS_MutualFunds@manipaltechnologies.com|arunanjp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:07|56.36 KB|Sent|Message for arunanjp@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1747|eCAS_MutualFunds@manipaltechnologies.com|arunanju991@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:07|64.01 KB|Sent|Message for arunanju991@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1748|eCAS_MutualFunds@manipaltechnologies.com|arunank@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:07|62.02 KB|Sent|Message for arunank@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1749|eCAS_MutualFunds@manipaltechnologies.com|arunankasengupta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:08|58.81 KB|Sent|Message for arunankasengupta@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1750|eCAS_MutualFunds@manipaltechnologies.com|arunanshu123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:08|55.51 KB|Sent|Message for arunanshu123@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1751|eCAS_MutualFunds@manipaltechnologies.com|arunanshub@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:08|59.14 KB|Sent|Message for arunanshub@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1752|eCAS_MutualFunds@manipaltechnologies.com|arunanshulkumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:08|62.6 KB|Sent|Message for arunanshulkumar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1753|eCAS_MutualFunds@manipaltechnologies.com|arunanshusebai6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:08|64.59 KB|Sent|Message for arunanshusebai6@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1754|eCAS_MutualFunds@manipaltechnologies.com|arunanshuuns@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:08|53.97 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1755|eCAS_MutualFunds@manipaltechnologies.com|arunanshvaidya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:09|64.41 KB|Sent|Message for arunanshvaidya@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1756|eCAS_MutualFunds@manipaltechnologies.com|arunansuchakraborty@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:09|54.56 KB|Sent|Message for arunansuchakraborty@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1757|eCAS_MutualFunds@manipaltechnologies.com|arunansughosh17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:09|66.18 KB|Sent|Message for arunansughosh17@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1758|eCAS_MutualFunds@manipaltechnologies.com|arunansukhanra2016@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:09|76.41 KB|Sent|Message for arunansukhanra2016@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1759|eCAS_MutualFunds@manipaltechnologies.com|arunansuroy.1977@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:09|62.22 KB|Sent|Message for arunansuroy.1977@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1760|eCAS_MutualFunds@manipaltechnologies.com|arunansusamal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:09|71.34 KB|Sent|Message for arunansusamal@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1761|eCAS_MutualFunds@manipaltechnologies.com|arunansusekhar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|55.9 KB|Sent|Message for arunansusekhar@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1762|eCAS_MutualFunds@manipaltechnologies.com|arunanthore.work@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|68.94 KB|Sent|Message for arunanthore.work@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1763|eCAS_MutualFunds@manipaltechnologies.com|arunantony@tataelxsi.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|78.33 KB|HardFail|Permanent SMTP delivery error when sending to 52.101.132.28:25 (tataelxsi-co-in.mail.protection.outlook.com) +1764|eCAS_MutualFunds@manipaltechnologies.com|arunanupa015@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|48.83 KB|Sent|Message for arunanupa015@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1765|eCAS_MutualFunds@manipaltechnologies.com|arunaodiya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|56.64 KB|Sent|Message for arunaodiya@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1766|eCAS_MutualFunds@manipaltechnologies.com|arunaomi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:10|88.19 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunaomi@gmail.com to suppression list because delivery has failed 18 times. +1767|eCAS_MutualFunds@manipaltechnologies.com|arunap1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|64.54 KB|Sent|Message for arunap1107@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1768|eCAS_MutualFunds@manipaltechnologies.com|arunap1218@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|48.32 KB|Sent|Message for arunap1218@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|An internal error occurred while sending this message. This message will be retried automatically. +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1769|eCAS_MutualFunds@manipaltechnologies.com|arunap63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|70.9 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunap63@gmail.com to suppression list because delivery has failed 18 times. +1770|eCAS_MutualFunds@manipaltechnologies.com|arunapadmam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|66.1 KB|Sent|Message for arunapadmam@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1771|eCAS_MutualFunds@manipaltechnologies.com|arunapai@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|51.44 KB|Sent|Message for arunapai@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1772|eCAS_MutualFunds@manipaltechnologies.com|arunapaiurwa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:11|52.29 KB|Sent|Message for arunapaiurwa@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1773|eCAS_MutualFunds@manipaltechnologies.com|arunapal09@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|74.44 KB|Sent|Message for arunapal09@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1774|eCAS_MutualFunds@manipaltechnologies.com|arunapal123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|67.99 KB|Sent|Message for arunapal123@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1775|eCAS_MutualFunds@manipaltechnologies.com|arunapal1460@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|66.33 KB|Sent|Message for arunapal1460@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1776|eCAS_MutualFunds@manipaltechnologies.com|arunapalaparthi13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|57.33 KB|Sent|Message for arunapalaparthi13@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1777|eCAS_MutualFunds@manipaltechnologies.com|arunapaliwal53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|57.42 KB|Sent|Message for arunapaliwal53@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1778|eCAS_MutualFunds@manipaltechnologies.com|arunapalliyil@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:12|73.7 KB|Sent|Message for arunapalliyil@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +1779|eCAS_MutualFunds@manipaltechnologies.com|arunapanda6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:13|85.66 KB|Sent|Message for arunapanda6@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1780|eCAS_MutualFunds@manipaltechnologies.com|arunapandey181@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:13|48.34 KB|Sent|Message for arunapandey181@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1781|eCAS_MutualFunds@manipaltechnologies.com|arunapandeyfzd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:13|56.91 KB|Sent|Message for arunapandeyfzd@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1782|eCAS_MutualFunds@manipaltechnologies.com|arunapandian@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:13|54.97 KB|Sent|Message for arunapandian@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +1783|eCAS_MutualFunds@manipaltechnologies.com|arunapandilla@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:13|54.26 KB|Sent|Message for arunapandilla@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1784|eCAS_MutualFunds@manipaltechnologies.com|arunapandimuthu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:13|64.01 KB|Sent|Message for arunapandimuthu@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1785|eCAS_MutualFunds@manipaltechnologies.com|arunapandit1948@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:14|51.18 KB|Sent|Message for arunapandit1948@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1786|eCAS_MutualFunds@manipaltechnologies.com|arunapanga9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:14|56.25 KB|Sent|Message for arunapanga9@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1787|eCAS_MutualFunds@manipaltechnologies.com|arunapanwar096@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:14|56.01 KB|Sent|Message for arunapanwar096@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1788|eCAS_MutualFunds@manipaltechnologies.com|arunapanwar23@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:14|55.13 KB|Sent|Message for arunapanwar23@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1789|eCAS_MutualFunds@manipaltechnologies.com|arunaparashar12345@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:14|66.66 KB|Sent|Message for arunaparashar12345@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1790|eCAS_MutualFunds@manipaltechnologies.com|arunapare923@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:14|51.48 KB|Sent|Message for arunapare923@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1791|eCAS_MutualFunds@manipaltechnologies.com|arunaparmar040@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|69.61 KB|Sent|Message for arunaparmar040@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1792|eCAS_MutualFunds@manipaltechnologies.com|arunaparmarjoria@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|57.15 KB|Sent|Message for arunaparmarjoria@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1793|eCAS_MutualFunds@manipaltechnologies.com|arunapatange1372@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|56.61 KB|Sent|Message for arunapatange1372@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1794|eCAS_MutualFunds@manipaltechnologies.com|arunapatel243@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|59.12 KB|Sent|Message for arunapatel243@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1795|eCAS_MutualFunds@manipaltechnologies.com|arunapatil1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:15|52.49 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunapatil1973@gmail.com to suppression list because delivery has failed 18 times. +1796|eCAS_MutualFunds@manipaltechnologies.com|arunapatil803@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:16|60.72 KB|Sent|Message for arunapatil803@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1797|eCAS_MutualFunds@manipaltechnologies.com|arunapatilap3421@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:16|55.79 KB|Sent|Message for arunapatilap3421@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1798|eCAS_MutualFunds@manipaltechnologies.com|arunapatri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:16|51.79 KB|Sent|Message for arunapatri@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1799|eCAS_MutualFunds@manipaltechnologies.com|arunapatta25@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:16|57.7 KB|Sent|Message for arunapatta25@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1800|eCAS_MutualFunds@manipaltechnologies.com|arunapattipochala123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:16|51.53 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1801|eCAS_MutualFunds@manipaltechnologies.com|arunapatwardhan1@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:16|54.31 KB|Sent|Message for arunapatwardhan1@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +1802|eCAS_MutualFunds@manipaltechnologies.com|arunapawar2509@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:17|79.98 KB|Sent|Message for arunapawar2509@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1803|eCAS_MutualFunds@manipaltechnologies.com|arunapawar590@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:17|70.49 KB|Sent|Message for arunapawar590@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1804|eCAS_MutualFunds@manipaltechnologies.com|arunapawse@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:17|54.77 KB|Sent|Message for arunapawse@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1805|eCAS_MutualFunds@manipaltechnologies.com|arunapdavid0@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:17|52.24 KB|Sent|Message for arunapdavid0@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1806|eCAS_MutualFunds@manipaltechnologies.com|arunapednekar.ap@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:17|78.36 KB|Sent|Message for arunapednekar.ap@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1807|eCAS_MutualFunds@manipaltechnologies.com|arunaperi1972@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:18|82.85 KB|Sent|Message for arunaperi1972@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1808|eCAS_MutualFunds@manipaltechnologies.com|arunaperiyasamy222@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:18|68.06 KB|Sent|Message for arunaperiyasamy222@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1809|eCAS_MutualFunds@manipaltechnologies.com|arunaperskgw@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:18|61.98 KB|Sent|Message for arunaperskgw@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1810|eCAS_MutualFunds@manipaltechnologies.com|arunapetkar3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:18|48.51 KB|Sent|Message for arunapetkar3@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1811|eCAS_MutualFunds@manipaltechnologies.com|arunapharmacy912@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:18|52.25 KB|Sent|Message for arunapharmacy912@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1812|eCAS_MutualFunds@manipaltechnologies.com|arunaphd27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:19|52.63 KB|Sent|Message for arunaphd27@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1813|eCAS_MutualFunds@manipaltechnologies.com|arunapi2008@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:19|54.4 KB|Sent|Message for arunapi2008@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1814|eCAS_MutualFunds@manipaltechnologies.com|arunapirgal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:19|65.54 KB|Sent|Message for arunapirgal@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1815|eCAS_MutualFunds@manipaltechnologies.com|arunapnandu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:19|54.27 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1816|eCAS_MutualFunds@manipaltechnologies.com|arunapole1990@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:19|62.01 KB|Sent|Message for arunapole1990@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1817|eCAS_MutualFunds@manipaltechnologies.com|arunaponnada15@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:20|76.68 KB|Sent|Message for arunaponnada15@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1818|eCAS_MutualFunds@manipaltechnologies.com|arunapopuri@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:20|64.97 KB|Sent|Message for arunapopuri@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +1819|eCAS_MutualFunds@manipaltechnologies.com|arunapp1960@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:20|73.79 KB|Sent|Message for arunapp1960@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1820|eCAS_MutualFunds@manipaltechnologies.com|arunapple87@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:20|64.04 KB|Sent|Message for arunapple87@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1821|eCAS_MutualFunds@manipaltechnologies.com|arunappu27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:20|51.36 KB|Sent|Message for arunappu27@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1822|eCAS_MutualFunds@manipaltechnologies.com|arunaprabandala15@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|55.49 KB|Sent|Message for arunaprabandala15@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1823|eCAS_MutualFunds@manipaltechnologies.com|arunaprabhakar2008@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|79.77 KB|Sent|Message for arunaprabhakar2008@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1824|eCAS_MutualFunds@manipaltechnologies.com|arunaprabhal06@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.08 KB|Sent|Message for arunaprabhal06@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1825|eCAS_MutualFunds@manipaltechnologies.com|arunaprachurai@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|67.89 KB|Sent|Message for arunaprachurai@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1826|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:21|66.5 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunapradhan1978@gmail.com to suppression list because delivery has failed 18 times. +1827|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan2011@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:22|59.16 KB|Sent|Message for arunapradhan2011@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1828|eCAS_MutualFunds@manipaltechnologies.com|arunapradhan257@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:22|69.18 KB|Sent|Message for arunapradhan257@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1829|eCAS_MutualFunds@manipaltechnologies.com|arunaprajita@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:22|61.45 KB|Sent|Message for arunaprajita@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1830|eCAS_MutualFunds@manipaltechnologies.com|arunaprakash520@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:22|69.01 KB|Sent|Message for arunaprakash520@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1831|eCAS_MutualFunds@manipaltechnologies.com|arunapranesha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:22|55.88 KB|Sent|Message for arunapranesha@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1832|eCAS_MutualFunds@manipaltechnologies.com|arunaprasad091969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:22|81.5 KB|Sent|Message for arunaprasad091969@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1833|eCAS_MutualFunds@manipaltechnologies.com|arunaprasadtople@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|53.18 KB|Sent|Message for arunaprasadtople@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1834|eCAS_MutualFunds@manipaltechnologies.com|arunaprasadtutika@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.02 KB|Sent|Message for arunaprasadtutika@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1835|eCAS_MutualFunds@manipaltechnologies.com|arunaprashar70@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|53.51 KB|Sent|Message for arunaprashar70@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1836|eCAS_MutualFunds@manipaltechnologies.com|arunapriya.s@outlook.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|72.93 KB|Sent|Message for arunapriya.s@outlook.com accepted by 52.101.68.14:25 (outlook-com.olc.protection.outlook.com) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +1837|eCAS_MutualFunds@manipaltechnologies.com|arunapte_ak@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:23|66.86 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunapte_ak@yahoo.co.in to suppression list because delivery has failed 18 times. +1838|eCAS_MutualFunds@manipaltechnologies.com|arunapujar1952@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:24|71.82 KB|Sent|Message for arunapujar1952@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1839|eCAS_MutualFunds@manipaltechnologies.com|arunapujari111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:24|60.42 KB|Sent|Message for arunapujari111@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1840|eCAS_MutualFunds@manipaltechnologies.com|arunapunwani@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:24|58.6 KB|Sent|Message for arunapunwani@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +1841|eCAS_MutualFunds@manipaltechnologies.com|arunapurna2324@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:24|75.25 KB|Sent|Message for arunapurna2324@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1842|eCAS_MutualFunds@manipaltechnologies.com|arunapurohit05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:24|72.95 KB|Sent|Message for arunapurohit05@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1843|eCAS_MutualFunds@manipaltechnologies.com|arunapushkarkotur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:24|64.47 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1844|eCAS_MutualFunds@manipaltechnologies.com|arunapvachheta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:25|67.57 KB|Sent|Message for arunapvachheta@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1845|eCAS_MutualFunds@manipaltechnologies.com|arunara.ar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:25|57.05 KB|Sent|Message for arunara.ar@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1846|eCAS_MutualFunds@manipaltechnologies.com|arunarad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:25|50.79 KB|Sent|Message for arunarad@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1847|eCAS_MutualFunds@manipaltechnologies.com|arunaradhya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:25|68.01 KB|Sent|Message for arunaradhya@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1848|eCAS_MutualFunds@manipaltechnologies.com|arunarafa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:25|82.58 KB|Sent|Message for arunarafa@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1849|eCAS_MutualFunds@manipaltechnologies.com|arunaraga2002@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:26|51.8 KB|Sent|Message for arunaraga2002@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1850|eCAS_MutualFunds@manipaltechnologies.com|arunaraghuram4265@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:26|66.35 KB|Sent|Message for arunaraghuram4265@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1851|eCAS_MutualFunds@manipaltechnologies.com|arunarahatwal6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:26|65.33 KB|Sent|Message for arunarahatwal6@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1852|eCAS_MutualFunds@manipaltechnologies.com|arunarai899@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:26|49.2 KB|Sent|Message for arunarai899@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1853|eCAS_MutualFunds@manipaltechnologies.com|arunarai899@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:26|68.4 KB|Sent|Message for arunarai899@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1854|eCAS_MutualFunds@manipaltechnologies.com|arunarai93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:26|66.46 KB|Sent|Message for arunarai93@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1855|eCAS_MutualFunds@manipaltechnologies.com|arunaraj.arunodayam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:27|57.86 KB|Sent|Message for arunaraj.arunodayam@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1856|eCAS_MutualFunds@manipaltechnologies.com|arunarajagopal1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:27|58.06 KB|Sent|Message for arunarajagopal1962@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1857|eCAS_MutualFunds@manipaltechnologies.com|arunarajen.r@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:27|72.48 KB|Sent|Message for arunarajen.r@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1858|eCAS_MutualFunds@manipaltechnologies.com|arunarajgor18@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:27|80.76 KB|Sent|Message for arunarajgor18@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1859|eCAS_MutualFunds@manipaltechnologies.com|arunarajput1970@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:27|52.0 KB|Sent|Message for arunarajput1970@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1860|eCAS_MutualFunds@manipaltechnologies.com|arunarajput30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|62.35 KB|Sent|Message for arunarajput30@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1861|eCAS_MutualFunds@manipaltechnologies.com|arunarajput3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|63.76 KB|Sent|Message for arunarajput3@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1862|eCAS_MutualFunds@manipaltechnologies.com|arunaraju2266@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|60.85 KB|Sent|Message for arunaraju2266@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1863|eCAS_MutualFunds@manipaltechnologies.com|arunarajusrikar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|61.03 KB|Sent|Message for arunarajusrikar@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1864|eCAS_MutualFunds@manipaltechnologies.com|arunaram1@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|52.77 KB|Sent|Message for arunaram1@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +1865|eCAS_MutualFunds@manipaltechnologies.com|arunaramani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:28|58.25 KB|Sent|Message for arunaramani@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1866|eCAS_MutualFunds@manipaltechnologies.com|arunaramasamy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:29|68.01 KB|Sent|Message for arunaramasamy@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1867|eCAS_MutualFunds@manipaltechnologies.com|arunaramesh0503@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:29|71.26 KB|Sent|Message for arunaramesh0503@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1868|eCAS_MutualFunds@manipaltechnologies.com|arunaramesh97@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:29|47.8 KB|Sent|Message for arunaramesh97@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1869|eCAS_MutualFunds@manipaltechnologies.com|arunarameshpatra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:29|68.83 KB|Sent|Message for arunarameshpatra@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1870|eCAS_MutualFunds@manipaltechnologies.com|arunaramuttd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:30|61.86 KB|Sent|Message for arunaramuttd@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1871|eCAS_MutualFunds@manipaltechnologies.com|arunarana1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:30|71.18 KB|Sent|Message for arunarana1987@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1872|eCAS_MutualFunds@manipaltechnologies.com|arunarangdal1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:30|51.89 KB|Sent|Message for arunarangdal1962@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1873|eCAS_MutualFunds@manipaltechnologies.com|arunaranidas1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:30|60.37 KB|Sent|Message for arunaranidas1@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1874|eCAS_MutualFunds@manipaltechnologies.com|arunaranjan123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:30|62.61 KB|Sent|Message for arunaranjan123@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1875|eCAS_MutualFunds@manipaltechnologies.com|arunarao1958@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:30|80.57 KB|Sent|Message for arunarao1958@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1876|eCAS_MutualFunds@manipaltechnologies.com|arunarao74@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:31|82.09 KB|Sent|Message for arunarao74@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1877|eCAS_MutualFunds@manipaltechnologies.com|arunaraosl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:31|74.41 KB|Sent|Message for arunaraosl@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1878|eCAS_MutualFunds@manipaltechnologies.com|arunarasikpatel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:31|55.78 KB|Sent|Message for arunarasikpatel@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1879|eCAS_MutualFunds@manipaltechnologies.com|arunarasiravi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:31|55.58 KB|Sent|Message for arunarasiravi@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1880|eCAS_MutualFunds@manipaltechnologies.com|arunarathi5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:31|51.73 KB|Sent|Message for arunarathi5@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1881|eCAS_MutualFunds@manipaltechnologies.com|arunarathnakaran@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:31|52.42 KB|Sent|Message for arunarathnakaran@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1882|eCAS_MutualFunds@manipaltechnologies.com|arunarathod28486@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:32|58.92 KB|Sent|Message for arunarathod28486@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1883|eCAS_MutualFunds@manipaltechnologies.com|arunarathore2010@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:32|67.37 KB|Sent|Message for arunarathore2010@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1884|eCAS_MutualFunds@manipaltechnologies.com|arunarathore@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:32|69.77 KB|Sent|Message for arunarathore@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1885|eCAS_MutualFunds@manipaltechnologies.com|arunarattansood@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:32|68.59 KB|Sent|Message for arunarattansood@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1886|eCAS_MutualFunds@manipaltechnologies.com|arunaraut94142@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:32|52.36 KB|Sent|Message for arunaraut94142@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1887|eCAS_MutualFunds@manipaltechnologies.com|arunaravi03@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:33|64.65 KB|Sent|Message for arunaravi03@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1888|eCAS_MutualFunds@manipaltechnologies.com|arunaravi1993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:33|60.95 KB|Sent|Message for arunaravi1993@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1889|eCAS_MutualFunds@manipaltechnologies.com|arunaravind09@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:33|63.45 KB|Sent|Message for arunaravind09@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1890|eCAS_MutualFunds@manipaltechnologies.com|arunaravind75@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:33|52.05 KB|Sent|Message for arunaravind75@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1891|eCAS_MutualFunds@manipaltechnologies.com|arunaravindumkg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:33|48.62 KB|Sent|Message for arunaravindumkg@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1892|eCAS_MutualFunds@manipaltechnologies.com|arunaravivr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:33|56.88 KB|Sent|Message for arunaravivr@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1893|eCAS_MutualFunds@manipaltechnologies.com|arunarawal.ar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:34|66.04 KB|Sent|Message for arunarawal.ar@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1894|eCAS_MutualFunds@manipaltechnologies.com|arunarawat.2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:34|57.29 KB|Sent|Message for arunarawat.2@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1895|eCAS_MutualFunds@manipaltechnologies.com|arunarawat1986@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:34|52.66 KB|Sent|Message for arunarawat1986@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1896|eCAS_MutualFunds@manipaltechnologies.com|arunarbabar1975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:34|61.67 KB|Sent|Message for arunarbabar1975@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1897|eCAS_MutualFunds@manipaltechnologies.com|arunardm2015@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:34|63.27 KB|Sent|Message for arunardm2015@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1898|eCAS_MutualFunds@manipaltechnologies.com|arunareddy.reddy5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|73.24 KB|Sent|Message for arunareddy.reddy5@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +1899|eCAS_MutualFunds@manipaltechnologies.com|arunareddy0204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|53.24 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunareddy0204@gmail.com to suppression list because delivery has failed 18 times. +1900|eCAS_MutualFunds@manipaltechnologies.com|arunareddy902@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|51.71 KB|Sent|Message for arunareddy902@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1901|eCAS_MutualFunds@manipaltechnologies.com|arunaredfox@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|60.86 KB|Sent|Message for arunaredfox@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1902|eCAS_MutualFunds@manipaltechnologies.com|arunargowda12345@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|60.25 KB|Sent|Message for arunargowda12345@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1903|eCAS_MutualFunds@manipaltechnologies.com|arunarime@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:35|60.68 KB|Sent|Message for arunarime@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1904|eCAS_MutualFunds@manipaltechnologies.com|arunarjunan9083@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:36|62.16 KB|Sent|Message for arunarjunan9083@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1905|eCAS_MutualFunds@manipaltechnologies.com|arunarka@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:36|69.82 KB|Sent|Message for arunarka@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1906|eCAS_MutualFunds@manipaltechnologies.com|arunarkadi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:36|54.64 KB|Sent|Message for arunarkadi@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1907|eCAS_MutualFunds@manipaltechnologies.com|arunarkadi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:36|71.82 KB|Sent|Message for arunarkadi@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1908|eCAS_MutualFunds@manipaltechnologies.com|arunarmy456@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:36|55.9 KB|Sent|Message for arunarmy456@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1909|eCAS_MutualFunds@manipaltechnologies.com|arunarokde23@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|61.98 KB|Sent|Message for arunarokde23@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1910|eCAS_MutualFunds@manipaltechnologies.com|arunarora.82@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|100.79 KB|Sent|Message for arunarora.82@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1911|eCAS_MutualFunds@manipaltechnologies.com|arunarora161@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|65.49 KB|Sent|Message for arunarora161@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1912|eCAS_MutualFunds@manipaltechnologies.com|arunarora71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|55.33 KB|Sent|Message for arunarora71@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +1913|eCAS_MutualFunds@manipaltechnologies.com|arunarora786@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|60.16 KB|Sent|Message for arunarora786@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1914|eCAS_MutualFunds@manipaltechnologies.com|arunarpatel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:37|58.4 KB|Sent|Message for arunarpatel@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1915|eCAS_MutualFunds@manipaltechnologies.com|arunarputham08@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:38|58.41 KB|Sent|Message for arunarputham08@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1916|eCAS_MutualFunds@manipaltechnologies.com|arunarpyadav123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:38|52.79 KB|Sent|Message for arunarpyadav123@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1917|eCAS_MutualFunds@manipaltechnologies.com|arunarque@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:38|52.83 KB|Sent|Message for arunarque@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1918|eCAS_MutualFunds@manipaltechnologies.com|arunarque@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:38|56.85 KB|Sent|Message for arunarque@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1919|eCAS_MutualFunds@manipaltechnologies.com|arunarumugam25@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:38|68.07 KB|Sent|Message for arunarumugam25@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1920|eCAS_MutualFunds@manipaltechnologies.com|arunarun48325@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:39|50.68 KB|Sent|Message for arunarun48325@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1921|eCAS_MutualFunds@manipaltechnologies.com|arunarun49729@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:39|58.39 KB|Sent|Message for arunarun49729@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1922|eCAS_MutualFunds@manipaltechnologies.com|arunarun97669@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:39|50.25 KB|Sent|Message for arunarun97669@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1923|eCAS_MutualFunds@manipaltechnologies.com|arunaruna481@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:39|50.98 KB|Sent|Message for arunaruna481@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1924|eCAS_MutualFunds@manipaltechnologies.com|arunarunadithi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:39|50.42 KB|Sent|Message for arunarunadithi@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1925|eCAS_MutualFunds@manipaltechnologies.com|arunarunelr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:39|55.67 KB|Sent|Message for arunarunelr@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1926|eCAS_MutualFunds@manipaltechnologies.com|arunarungymnast@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:40|53.11 KB|Sent|Message for arunarungymnast@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1927|eCAS_MutualFunds@manipaltechnologies.com|arunarunk2901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:40|51.06 KB|Sent|Message for arunarunk2901@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1928|eCAS_MutualFunds@manipaltechnologies.com|arunarunkumar56636@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:40|48.97 KB|Sent|Message for arunarunkumar56636@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1929|eCAS_MutualFunds@manipaltechnologies.com|arunarunph@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:40|61.25 KB|Sent|Message for arunarunph@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1930|eCAS_MutualFunds@manipaltechnologies.com|arunarunr215@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:40|59.65 KB|Sent|Message for arunarunr215@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1931|eCAS_MutualFunds@manipaltechnologies.com|arunaruns999@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:40|57.68 KB|Sent|Message for arunaruns999@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1932|eCAS_MutualFunds@manipaltechnologies.com|arunarunsolanki111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:41|68.45 KB|Sent|Message for arunarunsolanki111@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1933|eCAS_MutualFunds@manipaltechnologies.com|arunarya.kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:41|63.14 KB|Sent|Message for arunarya.kumar@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1934|eCAS_MutualFunds@manipaltechnologies.com|arunarya00610@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:41|67.55 KB|Sent|Message for arunarya00610@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1935|eCAS_MutualFunds@manipaltechnologies.com|arunarya52@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:41|68.82 KB|Sent|Message for arunarya52@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1936|eCAS_MutualFunds@manipaltechnologies.com|arunaryanbhandari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:41|57.83 KB|Sent|Message for arunaryanbhandari@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1937|eCAS_MutualFunds@manipaltechnologies.com|arunas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:42|51.43 KB|Sent|Message for arunas@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1938|eCAS_MutualFunds@manipaltechnologies.com|arunas_gr@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:42|52.83 KB|Sent|Message for arunas_gr@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1939|eCAS_MutualFunds@manipaltechnologies.com|arunasable89@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:42|63.07 KB|Sent|Message for arunasable89@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1940|eCAS_MutualFunds@manipaltechnologies.com|arunasag01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:42|50.46 KB|Sent|Message for arunasag01@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1941|eCAS_MutualFunds@manipaltechnologies.com|arunasaggam1975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:42|67.65 KB|Sent|Message for arunasaggam1975@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1942|eCAS_MutualFunds@manipaltechnologies.com|arunasahaaruna@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:42|62.31 KB|Sent|Message for arunasahaaruna@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta7.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +1943|eCAS_MutualFunds@manipaltechnologies.com|arunasahore@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|62.82 KB|Sent|Message for arunasahore@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +1944|eCAS_MutualFunds@manipaltechnologies.com|arunasahu1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|48.93 KB|Sent|Message for arunasahu1980@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1945|eCAS_MutualFunds@manipaltechnologies.com|arunasahu31@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|52.75 KB|Sent|Message for arunasahu31@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1946|eCAS_MutualFunds@manipaltechnologies.com|arunasai.mutyala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|66.54 KB|Sent|Message for arunasai.mutyala@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1947|eCAS_MutualFunds@manipaltechnologies.com|arunasambhare@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:43|69.47 KB|Sent|Message for arunasambhare@hotmail.com accepted by 52.101.73.13:25 (hotmail-com.olc.protection.outlook.com) +1948|eCAS_MutualFunds@manipaltechnologies.com|arunasampally@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:44|56.21 KB|Sent|Message for arunasampally@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1949|eCAS_MutualFunds@manipaltechnologies.com|arunasankarkavitha77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:44|80.25 KB|Sent|Message for arunasankarkavitha77@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1950|eCAS_MutualFunds@manipaltechnologies.com|arunasarunas662@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:44|58.87 KB|Sent|Message for arunasarunas662@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1951|eCAS_MutualFunds@manipaltechnologies.com|arunasathe27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:44|67.81 KB|Sent|Message for arunasathe27@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1952|eCAS_MutualFunds@manipaltechnologies.com|arunasathish1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:44|60.21 KB|Sent|Message for arunasathish1980@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1953|eCAS_MutualFunds@manipaltechnologies.com|arunasatish2019@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:45|64.82 KB|Sent|Message for arunasatish2019@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1954|eCAS_MutualFunds@manipaltechnologies.com|arunasatvedi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:45|69.08 KB|Sent|Message for arunasatvedi@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1955|eCAS_MutualFunds@manipaltechnologies.com|arunasau031156@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:45|60.09 KB|Sent|Message for arunasau031156@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1956|eCAS_MutualFunds@manipaltechnologies.com|arunasavani569@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:45|67.92 KB|Sent|Message for arunasavani569@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1957|eCAS_MutualFunds@manipaltechnologies.com|arunasavla66@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:45|60.7 KB|Sent|Message for arunasavla66@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1958|eCAS_MutualFunds@manipaltechnologies.com|arunasawant110@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:45|58.35 KB|Sent|Message for arunasawant110@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1959|eCAS_MutualFunds@manipaltechnologies.com|arunasawant111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:46|67.61 KB|Sent|Message for arunasawant111@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1960|eCAS_MutualFunds@manipaltechnologies.com|arunasaxenaicds@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:46|67.47 KB|Sent|Message for arunasaxenaicds@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1961|eCAS_MutualFunds@manipaltechnologies.com|arunasbelsare@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:46|57.46 KB|Sent|Message for arunasbelsare@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1962|eCAS_MutualFunds@manipaltechnologies.com|arunasbhide104@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:46|78.92 KB|Sent|Message for arunasbhide104@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1963|eCAS_MutualFunds@manipaltechnologies.com|arunascollection@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:46|65.02 KB|Sent|Message for arunascollection@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +1964|eCAS_MutualFunds@manipaltechnologies.com|arunasd574@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:47|51.73 KB|HardFail|Permanent SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +1965|eCAS_MutualFunds@manipaltechnologies.com|arunaseervis906@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:47|67.79 KB|Sent|Message for arunaseervis906@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1966|eCAS_MutualFunds@manipaltechnologies.com|arunasekhar2411@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:47|61.77 KB|Sent|Message for arunasekhar2411@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1967|eCAS_MutualFunds@manipaltechnologies.com|arunasekhar981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:47|62.28 KB|Sent|Message for arunasekhar981@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1968|eCAS_MutualFunds@manipaltechnologies.com|arunasenthilkumar.kgm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:47|54.43 KB|Sent|Message for arunasenthilkumar.kgm@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1969|eCAS_MutualFunds@manipaltechnologies.com|arunash156@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:47|66.72 KB|Sent|Message for arunash156@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1970|eCAS_MutualFunds@manipaltechnologies.com|arunasha1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:48|52.05 KB|Sent|Message for arunasha1978@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1971|eCAS_MutualFunds@manipaltechnologies.com|arunasha706@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:48|68.76 KB|Sent|Message for arunasha706@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1972|eCAS_MutualFunds@manipaltechnologies.com|arunashah321@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:48|68.7 KB|Sent|Message for arunashah321@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1973|eCAS_MutualFunds@manipaltechnologies.com|arunashailendra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:48|55.05 KB|Sent|Message for arunashailendra@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1974|eCAS_MutualFunds@manipaltechnologies.com|arunasharma0515@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:49|57.23 KB|Sent|Message for arunasharma0515@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1975|eCAS_MutualFunds@manipaltechnologies.com|arunasharma1416@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:49|65.14 KB|Sent|Message for arunasharma1416@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1976|eCAS_MutualFunds@manipaltechnologies.com|arunasharma25212@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:49|67.59 KB|Sent|Message for arunasharma25212@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1977|eCAS_MutualFunds@manipaltechnologies.com|arunasharma4083@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:49|52.39 KB|Sent|Message for arunasharma4083@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1978|eCAS_MutualFunds@manipaltechnologies.com|arunasharma441@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:49|52.54 KB|Sent|Message for arunasharma441@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1979|eCAS_MutualFunds@manipaltechnologies.com|arunasharma9491@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:49|67.15 KB|Sent|Message for arunasharma9491@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +1980|eCAS_MutualFunds@manipaltechnologies.com|arunasharma_73@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|110.08 KB|Sent|Message for arunasharma_73@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +1981|eCAS_MutualFunds@manipaltechnologies.com|arunasharmapgi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|55.6 KB|Sent|Message for arunasharmapgi@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1982|eCAS_MutualFunds@manipaltechnologies.com|arunasharmapgi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|55.41 KB|Sent|Message for arunasharmapgi@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1983|eCAS_MutualFunds@manipaltechnologies.com|arunashastri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|69.85 KB|Sent|Message for arunashastri@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1984|eCAS_MutualFunds@manipaltechnologies.com|arunashawan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:50|61.07 KB|Sent|Message for arunashawan@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1985|eCAS_MutualFunds@manipaltechnologies.com|arunashekargoud@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:51|66.01 KB|Sent|Message for arunashekargoud@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1986|eCAS_MutualFunds@manipaltechnologies.com|arunasherp1999@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:51|48.39 KB|Sent|Message for arunasherp1999@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1987|eCAS_MutualFunds@manipaltechnologies.com|arunashetty57@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:51|48.83 KB|Sent|Message for arunashetty57@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1988|eCAS_MutualFunds@manipaltechnologies.com|arunashirdhankar582@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:51|81.42 KB|Sent|Message for arunashirdhankar582@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1989|eCAS_MutualFunds@manipaltechnologies.com|arunashis.paul.kol@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:51|55.25 KB|Sent|Message for arunashis.paul.kol@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1990|eCAS_MutualFunds@manipaltechnologies.com|arunashish1975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:51|70.38 KB|Sent|Message for arunashish1975@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1991|eCAS_MutualFunds@manipaltechnologies.com|arunashiva.k@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:52|61.54 KB|Sent|Message for arunashiva.k@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1992|eCAS_MutualFunds@manipaltechnologies.com|arunashmi.parida@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:52|74.04 KB|Sent|Message for arunashmi.parida@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1993|eCAS_MutualFunds@manipaltechnologies.com|arunashok199400@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:52|65.46 KB|Sent|Message for arunashok199400@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1994|eCAS_MutualFunds@manipaltechnologies.com|arunashok84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:52|70.01 KB|Sent|Message for arunashok84@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1995|eCAS_MutualFunds@manipaltechnologies.com|arunashok9383@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:52|51.88 KB|Sent|Message for arunashok9383@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1996|eCAS_MutualFunds@manipaltechnologies.com|arunashokan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|74.88 KB|Sent|Message for arunashokan@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1997|eCAS_MutualFunds@manipaltechnologies.com|arunashri8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|52.11 KB|Sent|Message for arunashri8@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1998|eCAS_MutualFunds@manipaltechnologies.com|arunashri8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|61.55 KB|Sent|Message for arunashri8@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +1999|eCAS_MutualFunds@manipaltechnologies.com|arunashripadpatil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|70.36 KB|Sent|Message for arunashripadpatil@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2000|eCAS_MutualFunds@manipaltechnologies.com|arunashukla11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|58.58 KB|Sent|Message for arunashukla11@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2001|eCAS_MutualFunds@manipaltechnologies.com|arunashukla17@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:53|67.75 KB|Sent|Message for arunashukla17@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2002|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|87.12 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunashukla19@yahoo.co.in to suppression list because delivery has failed 18 times. +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2003|eCAS_MutualFunds@manipaltechnologies.com|arunashukla19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|58.95 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunashukla19@yahoo.co.in to suppression list because delivery has failed 18 times. +2004|eCAS_MutualFunds@manipaltechnologies.com|arunashukla68@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|57.23 KB|Sent|Message for arunashukla68@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2005|eCAS_MutualFunds@manipaltechnologies.com|arunasingh090858@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|55.43 KB|Sent|Message for arunasingh090858@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2006|eCAS_MutualFunds@manipaltechnologies.com|arunasingh2256@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:54|63.71 KB|Sent|Message for arunasingh2256@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2007|eCAS_MutualFunds@manipaltechnologies.com|arunasinghmandithana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|58.34 KB|Sent|Message for arunasinghmandithana@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2008|eCAS_MutualFunds@manipaltechnologies.com|arunasinghmandithana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|83.36 KB|Sent|Message for arunasinghmandithana@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2009|eCAS_MutualFunds@manipaltechnologies.com|arunasinha469@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|61.08 KB|Sent|Message for arunasinha469@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2010|eCAS_MutualFunds@manipaltechnologies.com|arunasirohi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|61.54 KB|Sent|Message for arunasirohi@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2011|eCAS_MutualFunds@manipaltechnologies.com|arunasishbose@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|62.7 KB|Sent|Message for arunasishbose@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2012|eCAS_MutualFunds@manipaltechnologies.com|arunasishdutta8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:55|56.73 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunasishdutta8@gmail.com to suppression list because delivery has failed 18 times. +2013|eCAS_MutualFunds@manipaltechnologies.com|arunasishmukherjee@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:56|76.76 KB|Sent|Message for arunasishmukherjee@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2014|eCAS_MutualFunds@manipaltechnologies.com|arunasissantra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:56|59.92 KB|Sent|Message for arunasissantra@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2015|eCAS_MutualFunds@manipaltechnologies.com|arunaskoradkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:56|58.21 KB|Sent|Message for arunaskoradkar@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2016|eCAS_MutualFunds@manipaltechnologies.com|arunasmc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:56|56.69 KB|Sent|Message for arunasmc@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2017|eCAS_MutualFunds@manipaltechnologies.com|arunasohan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:56|58.77 KB|Sent|Message for arunasohan@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2018|eCAS_MutualFunds@manipaltechnologies.com|arunasolanki128@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:56|49.63 KB|Sent|Message for arunasolanki128@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2019|eCAS_MutualFunds@manipaltechnologies.com|arunasolanki8824@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:57|55.28 KB|Sent|Message for arunasolanki8824@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2020|eCAS_MutualFunds@manipaltechnologies.com|arunasoni060@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:57|62.28 KB|Sent|Message for arunasoni060@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2021|eCAS_MutualFunds@manipaltechnologies.com|arunasoni3184@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:57|51.69 KB|Sent|Message for arunasoni3184@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2022|eCAS_MutualFunds@manipaltechnologies.com|arunasree.gangaraju@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:57|52.34 KB|Sent|Message for arunasree.gangaraju@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2023|eCAS_MutualFunds@manipaltechnologies.com|arunasree1505@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:57|62.8 KB|Sent|Message for arunasree1505@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2024|eCAS_MutualFunds@manipaltechnologies.com|arunasreeddi.as@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|48.12 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2025|eCAS_MutualFunds@manipaltechnologies.com|arunasreehari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|54.68 KB|Sent|Message for arunasreehari@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2026|eCAS_MutualFunds@manipaltechnologies.com|arunasreekorampalli@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|75.4 KB|Sent|Message for arunasreekorampalli@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2027|eCAS_MutualFunds@manipaltechnologies.com|arunasreenivas.yerragunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|52.95 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunasreenivas.yerragunta@gmail.com to suppression list because delivery has failed 18 times. +2028|eCAS_MutualFunds@manipaltechnologies.com|arunasreethota99@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:58|86.18 KB|Sent|Message for arunasreethota99@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2029|eCAS_MutualFunds@manipaltechnologies.com|arunasreeveluvali@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|57.01 KB|Sent|Message for arunasreeveluvali@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2030|eCAS_MutualFunds@manipaltechnologies.com|arunasreey@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|58.0 KB|Sent|Message for arunasreey@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2031|eCAS_MutualFunds@manipaltechnologies.com|arunasri.donthi@outlook.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|74.94 KB|Sent|Message for arunasri.donthi@outlook.com accepted by 52.101.68.14:25 (outlook-com.olc.protection.outlook.com) +2032|eCAS_MutualFunds@manipaltechnologies.com|arunasri156@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|66.2 KB|Sent|Message for arunasri156@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2033|eCAS_MutualFunds@manipaltechnologies.com|arunasri45@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|51.52 KB|Sent|Message for arunasri45@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2034|eCAS_MutualFunds@manipaltechnologies.com|arunasriabbireddy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:04:59|68.24 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunasriabbireddy@gmail.com to suppression list because delivery has failed 18 times. +2035|eCAS_MutualFunds@manipaltechnologies.com|arunasrim34@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:00|73.89 KB|Sent|Message for arunasrim34@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2036|eCAS_MutualFunds@manipaltechnologies.com|arunasriram16@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:00|53.23 KB|Sent|Message for arunasriram16@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2037|eCAS_MutualFunds@manipaltechnologies.com|arunasrivastav1112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:00|56.66 KB|Sent|Message for arunasrivastav1112@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2038|eCAS_MutualFunds@manipaltechnologies.com|arunasrivastava2607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:00|78.04 KB|Sent|Message for arunasrivastava2607@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2039|eCAS_MutualFunds@manipaltechnologies.com|arunasrivastava9415@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:00|57.85 KB|Sent|Message for arunasrivastava9415@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2040|eCAS_MutualFunds@manipaltechnologies.com|arunasrivastvakbn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:00|53.96 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2041|eCAS_MutualFunds@manipaltechnologies.com|arunast82@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:01|52.04 KB|Sent|Message for arunast82@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2042|eCAS_MutualFunds@manipaltechnologies.com|arunasthana32@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:01|66.19 KB|Sent|Message for arunasthana32@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2043|eCAS_MutualFunds@manipaltechnologies.com|arunasthanaa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:01|78.66 KB|Sent|Message for arunasthanaa@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2044|eCAS_MutualFunds@manipaltechnologies.com|arunastudio7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:01|51.54 KB|Sent|Message for arunastudio7@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2045|eCAS_MutualFunds@manipaltechnologies.com|arunasubba56@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:01|49.2 KB|Sent|Message for arunasubba56@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2046|eCAS_MutualFunds@manipaltechnologies.com|arunasubramani.aapc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:01|56.62 KB|Sent|Message for arunasubramani.aapc@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2047|eCAS_MutualFunds@manipaltechnologies.com|arunasukhija13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|52.19 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunasukhija13@gmail.com to suppression list because delivery has failed 18 times. +2048|eCAS_MutualFunds@manipaltechnologies.com|arunasundaram05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|55.19 KB|Sent|Message for arunasundaram05@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2049|eCAS_MutualFunds@manipaltechnologies.com|arunasunkara@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|54.84 KB|Sent|Message for arunasunkara@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2050|eCAS_MutualFunds@manipaltechnologies.com|arunasureka@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|53.72 KB|Sent|Message for arunasureka@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2051|eCAS_MutualFunds@manipaltechnologies.com|arunaswale3023@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|55.84 KB|Sent|Message for arunaswale3023@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2052|eCAS_MutualFunds@manipaltechnologies.com|arunaswathi653@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:02|49.08 KB|Sent|Message for arunaswathi653@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2053|eCAS_MutualFunds@manipaltechnologies.com|arunataank@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:03|56.85 KB|Sent|Message for arunataank@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2054|eCAS_MutualFunds@manipaltechnologies.com|arunatai.j@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:03|55.92 KB|Sent|Message for arunatai.j@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2055|eCAS_MutualFunds@manipaltechnologies.com|arunatajne1964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:03|57.92 KB|Sent|Message for arunatajne1964@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2056|eCAS_MutualFunds@manipaltechnologies.com|arunatamang1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:03|59.55 KB|Sent|Message for arunatamang1980@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2057|eCAS_MutualFunds@manipaltechnologies.com|arunatandulwadkar123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:03|76.47 KB|Sent|Message for arunatandulwadkar123@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2058|eCAS_MutualFunds@manipaltechnologies.com|arunatanwar04@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:04|68.46 KB|Sent|Message for arunatanwar04@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2059|eCAS_MutualFunds@manipaltechnologies.com|arunatelekicharla@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:04|71.23 KB|Sent|Message for arunatelekicharla@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2060|eCAS_MutualFunds@manipaltechnologies.com|arunathakare4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:04|66.24 KB|Sent|Message for arunathakare4@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2061|eCAS_MutualFunds@manipaltechnologies.com|arunathakre81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:04|55.02 KB|Sent|Message for arunathakre81@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2062|eCAS_MutualFunds@manipaltechnologies.com|arunathirumalarao1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:04|54.39 KB|Sent|Message for arunathirumalarao1985@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2063|eCAS_MutualFunds@manipaltechnologies.com|arunathogari.57@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|56.12 KB|Sent|Message for arunathogari.57@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2064|eCAS_MutualFunds@manipaltechnologies.com|arunathokale2010@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|64.35 KB|Sent|Message for arunathokale2010@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2065|eCAS_MutualFunds@manipaltechnologies.com|arunathomas9277@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|56.86 KB|Sent|Message for arunathomas9277@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2066|eCAS_MutualFunds@manipaltechnologies.com|arunatigga12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|61.29 KB|Sent|Message for arunatigga12@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2067|eCAS_MutualFunds@manipaltechnologies.com|arunatirkey411@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|51.78 KB|Sent|Message for arunatirkey411@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2068|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:05|60.97 KB|Sent|Message for arunatkalikar@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2069|eCAS_MutualFunds@manipaltechnologies.com|arunatkalikar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.37 KB|Sent|Message for arunatkalikar@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +2070|eCAS_MutualFunds@manipaltechnologies.com|arunatkan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|55.13 KB|Sent|Message for arunatkan@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2071|eCAS_MutualFunds@manipaltechnologies.com|arunatl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|71.85 KB|Sent|Message for arunatl@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2072|eCAS_MutualFunds@manipaltechnologies.com|arunatmani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|58.58 KB|Sent|Message for arunatmani@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2073|eCAS_MutualFunds@manipaltechnologies.com|arunatomarr92@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|65.72 KB|Sent|Message for arunatomarr92@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2074|eCAS_MutualFunds@manipaltechnologies.com|arunatoolpost2010@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:06|64.82 KB|Sent|Message for arunatoolpost2010@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2075|eCAS_MutualFunds@manipaltechnologies.com|arunatozsolution@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:07|56.82 KB|Sent|Message for arunatozsolution@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2076|eCAS_MutualFunds@manipaltechnologies.com|arunatr1969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:07|76.16 KB|Sent|Message for arunatr1969@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2077|eCAS_MutualFunds@manipaltechnologies.com|arunatrinita@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:07|49.22 KB|Sent|Message for arunatrinita@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2078|eCAS_MutualFunds@manipaltechnologies.com|arunatsh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:07|50.71 KB|Sent|Message for arunatsh@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2079|eCAS_MutualFunds@manipaltechnologies.com|arunatta1961@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:07|68.44 KB|Sent|Message for arunatta1961@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2080|eCAS_MutualFunds@manipaltechnologies.com|arunatta80@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:08|51.46 KB|Sent|Message for arunatta80@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2081|eCAS_MutualFunds@manipaltechnologies.com|arunatujare17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:08|61.75 KB|Sent|Message for arunatujare17@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2082|eCAS_MutualFunds@manipaltechnologies.com|arunaudacious@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:08|68.99 KB|Sent|Message for arunaudacious@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2083|eCAS_MutualFunds@manipaltechnologies.com|arunaudayakumar62@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:08|62.42 KB|Sent|Message for arunaudayakumar62@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2084|eCAS_MutualFunds@manipaltechnologies.com|arunauk77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:08|62.47 KB|Sent|Message for arunauk77@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2085|eCAS_MutualFunds@manipaltechnologies.com|arunauto211@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:08|48.64 KB|Sent|Message for arunauto211@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2086|eCAS_MutualFunds@manipaltechnologies.com|arunav.dutta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:09|88.01 KB|Sent|Message for arunav.dutta@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2087|eCAS_MutualFunds@manipaltechnologies.com|arunav.it@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:09|71.88 KB|Sent|Message for arunav.it@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2088|eCAS_MutualFunds@manipaltechnologies.com|arunav.mathur2002@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:09|58.64 KB|Sent|Message for arunav.mathur2002@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2089|eCAS_MutualFunds@manipaltechnologies.com|arunav.mondal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:09|69.26 KB|Sent|Message for arunav.mondal@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2090|eCAS_MutualFunds@manipaltechnologies.com|arunav.sarmah@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:09|62.54 KB|Sent|Message for arunav.sarmah@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2091|eCAS_MutualFunds@manipaltechnologies.com|arunav.sarmah@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:09|47.27 KB|Sent|Message for arunav.sarmah@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2092|eCAS_MutualFunds@manipaltechnologies.com|arunav.sen14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:10|60.41 KB|Sent|Message for arunav.sen14@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2093|eCAS_MutualFunds@manipaltechnologies.com|arunav.tiwari19@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:10|48.26 KB|Sent|Message for arunav.tiwari19@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2094|eCAS_MutualFunds@manipaltechnologies.com|arunav08@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:10|51.44 KB|Sent|Message for arunav08@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2095|eCAS_MutualFunds@manipaltechnologies.com|arunav16dec@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:10|73.75 KB|Sent|Message for arunav16dec@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2096|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|71.32 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunav1962@gmail.com to suppression list because delivery has failed 18 times. +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2097|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.51 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunav1962@gmail.com to suppression list because delivery has failed 18 times. +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2098|eCAS_MutualFunds@manipaltechnologies.com|arunav1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|55.63 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunav1962@gmail.com to suppression list because delivery has failed 18 times. +2099|eCAS_MutualFunds@manipaltechnologies.com|arunava.012@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|64.17 KB|Sent|Message for arunava.012@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2100|eCAS_MutualFunds@manipaltechnologies.com|arunava.banerjee@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|62.23 KB|Sent|Message for arunava.banerjee@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2101|eCAS_MutualFunds@manipaltechnologies.com|arunava.banerjee@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:11|68.08 KB|Sent|Message for arunava.banerjee@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2102|eCAS_MutualFunds@manipaltechnologies.com|arunava.burdwan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:12|72.26 KB|Sent|Message for arunava.burdwan@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2103|eCAS_MutualFunds@manipaltechnologies.com|arunava.chakrabarti01111981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:12|68.95 KB|Sent|Message for arunava.chakrabarti01111981@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2104|eCAS_MutualFunds@manipaltechnologies.com|arunava.chakrabarti01111981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:12|54.25 KB|Sent|Message for arunava.chakrabarti01111981@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2105|eCAS_MutualFunds@manipaltechnologies.com|arunava.chakrabarti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:12|75.66 KB|Sent|Message for arunava.chakrabarti@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2106|eCAS_MutualFunds@manipaltechnologies.com|arunava.chakraborthy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:12|61.97 KB|Sent|Message for arunava.chakraborthy@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2107|eCAS_MutualFunds@manipaltechnologies.com|arunava.chakraborty@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|94.35 KB|Sent|Message for arunava.chakraborty@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2108|eCAS_MutualFunds@manipaltechnologies.com|arunava.chatterjee69@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|62.82 KB|Sent|Message for arunava.chatterjee69@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2109|eCAS_MutualFunds@manipaltechnologies.com|arunava.das25@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.55 KB|Sent|Message for arunava.das25@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +2110|eCAS_MutualFunds@manipaltechnologies.com|arunava.das3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|68.01 KB|Sent|Message for arunava.das3@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2111|eCAS_MutualFunds@manipaltechnologies.com|arunava.debb@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:13|69.41 KB|Sent|Message for arunava.debb@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2112|eCAS_MutualFunds@manipaltechnologies.com|arunava.ghosh2@vodafone.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:14|58.6 KB|Sent|Message for arunava.ghosh2@vodafone.com accepted by 52.101.73.11:25 (vodafone-com.mail.protection.outlook.com) +2113|eCAS_MutualFunds@manipaltechnologies.com|arunava.ip@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:14|67.67 KB|Sent|Message for arunava.ip@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2114|eCAS_MutualFunds@manipaltechnologies.com|arunava.khandait@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:14|67.37 KB|Sent|Message for arunava.khandait@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2115|eCAS_MutualFunds@manipaltechnologies.com|arunava.lichousing@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:14|88.8 KB|Sent|Message for arunava.lichousing@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2116|eCAS_MutualFunds@manipaltechnologies.com|arunava.paradise@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:14|57.58 KB|Sent|Message for arunava.paradise@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2117|eCAS_MutualFunds@manipaltechnologies.com|arunava.roychowdhury61@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:15|53.24 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2118|eCAS_MutualFunds@manipaltechnologies.com|arunava.roychwdhury61@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:15|55.15 KB|Sent|Message for arunava.roychwdhury61@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2119|eCAS_MutualFunds@manipaltechnologies.com|arunava.sastri2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:15|81.38 KB|Sent|Message for arunava.sastri2009@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2120|eCAS_MutualFunds@manipaltechnologies.com|arunava.stocks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:15|67.81 KB|Sent|Message for arunava.stocks@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2121|eCAS_MutualFunds@manipaltechnologies.com|arunava.stocks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:15|60.42 KB|Sent|Message for arunava.stocks@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2122|eCAS_MutualFunds@manipaltechnologies.com|arunava0602@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:16|70.08 KB|Sent|Message for arunava0602@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2123|eCAS_MutualFunds@manipaltechnologies.com|arunava121982@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:16|54.49 KB|Sent|Message for arunava121982@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2124|eCAS_MutualFunds@manipaltechnologies.com|arunava121982@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:16|61.81 KB|Sent|Message for arunava121982@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2125|eCAS_MutualFunds@manipaltechnologies.com|arunava123456@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:16|76.81 KB|Sent|Message for arunava123456@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2126|eCAS_MutualFunds@manipaltechnologies.com|arunava123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:16|70.4 KB|Sent|Message for arunava123@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2127|eCAS_MutualFunds@manipaltechnologies.com|arunava123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:16|55.09 KB|Sent|Message for arunava123@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2128|eCAS_MutualFunds@manipaltechnologies.com|arunava123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:17|61.5 KB|Sent|Message for arunava123@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2129|eCAS_MutualFunds@manipaltechnologies.com|arunava12in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:17|51.64 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2129|eCAS_MutualFunds@manipaltechnologies.com|arunava12in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:17|51.64 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2129|eCAS_MutualFunds@manipaltechnologies.com|arunava12in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:17|51.64 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2129|eCAS_MutualFunds@manipaltechnologies.com|arunava12in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:17|51.64 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2129|eCAS_MutualFunds@manipaltechnologies.com|arunava12in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:17|51.64 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2129|eCAS_MutualFunds@manipaltechnologies.com|arunava12in@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:17|51.64 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2130|eCAS_MutualFunds@manipaltechnologies.com|arunava14366@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:17|62.45 KB|Sent|Message for arunava14366@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2131|eCAS_MutualFunds@manipaltechnologies.com|arunava1902@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:17|64.07 KB|Sent|Message for arunava1902@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2132|eCAS_MutualFunds@manipaltechnologies.com|arunava1902@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:17|102.08 KB|Sent|Message for arunava1902@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2133|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|54.03 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2133|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|54.03 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2133|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|54.03 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2133|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|54.03 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2133|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|54.03 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2133|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|54.03 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2133|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|54.03 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2133|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|54.03 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2133|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|54.03 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2133|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|54.03 KB|Sent|Message for arunava1960@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2134|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|55.91 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2134|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|55.91 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2134|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|55.91 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2134|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|55.91 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2134|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|55.91 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2134|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|55.91 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2134|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|55.91 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2134|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|55.91 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2134|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|55.91 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2134|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|55.91 KB|Sent|Message for arunava1960@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2135|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|62.2 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2135|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|62.2 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2135|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|62.2 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2135|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|62.2 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2135|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|62.2 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2135|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|62.2 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2135|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|62.2 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2135|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|62.2 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2135|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|62.2 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2135|eCAS_MutualFunds@manipaltechnologies.com|arunava1960@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|62.2 KB|Sent|Message for arunava1960@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2136|eCAS_MutualFunds@manipaltechnologies.com|arunava1975a@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|49.06 KB|Sent|Message for arunava1975a@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2137|eCAS_MutualFunds@manipaltechnologies.com|arunava197911@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:18|57.96 KB|Sent|Message for arunava197911@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2138|eCAS_MutualFunds@manipaltechnologies.com|arunava2006molbio@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:19|70.73 KB|Sent|Message for arunava2006molbio@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2139|eCAS_MutualFunds@manipaltechnologies.com|arunava22886@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:19|67.33 KB|Sent|Message for arunava22886@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2140|eCAS_MutualFunds@manipaltechnologies.com|arunava24111956@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:19|61.55 KB|Sent|Message for arunava24111956@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2141|eCAS_MutualFunds@manipaltechnologies.com|arunava24111956@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:19|65.62 KB|Sent|Message for arunava24111956@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2142|eCAS_MutualFunds@manipaltechnologies.com|arunava250763@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:19|69.66 KB|Sent|Message for arunava250763@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2143|eCAS_MutualFunds@manipaltechnologies.com|arunava250763@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:19|85.62 KB|Sent|Message for arunava250763@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2144|eCAS_MutualFunds@manipaltechnologies.com|arunava28@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|83.7 KB|Sent|Message for arunava28@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2145|eCAS_MutualFunds@manipaltechnologies.com|arunava297@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|90.23 KB|Sent|Message for arunava297@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2146|eCAS_MutualFunds@manipaltechnologies.com|arunava297@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|83.9 KB|Sent|Message for arunava297@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2147|eCAS_MutualFunds@manipaltechnologies.com|arunava423@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|57.47 KB|Sent|Message for arunava423@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2148|eCAS_MutualFunds@manipaltechnologies.com|arunava_addy@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|52.13 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2148|eCAS_MutualFunds@manipaltechnologies.com|arunava_addy@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|52.13 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2148|eCAS_MutualFunds@manipaltechnologies.com|arunava_addy@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|52.13 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2148|eCAS_MutualFunds@manipaltechnologies.com|arunava_addy@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|52.13 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2148|eCAS_MutualFunds@manipaltechnologies.com|arunava_addy@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|52.13 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2148|eCAS_MutualFunds@manipaltechnologies.com|arunava_addy@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|52.13 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2148|eCAS_MutualFunds@manipaltechnologies.com|arunava_addy@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|52.13 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2148|eCAS_MutualFunds@manipaltechnologies.com|arunava_addy@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|52.13 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2148|eCAS_MutualFunds@manipaltechnologies.com|arunava_addy@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|52.13 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2148|eCAS_MutualFunds@manipaltechnologies.com|arunava_addy@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:20|52.13 KB|Sent|Message for arunava_addy@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2149|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|71.26 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2149|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|71.26 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2149|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|71.26 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2149|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|71.26 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2149|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|71.26 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2149|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|71.26 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2149|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|71.26 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2149|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|71.26 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2149|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|71.26 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2149|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|71.26 KB|Sent|Message for arunava_bakshi@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2150|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|75.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2150|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|75.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2150|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|75.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2150|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|75.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2150|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|75.82 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2150|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|75.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2150|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|75.82 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2150|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|75.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2150|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|75.82 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2150|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|75.82 KB|Sent|Message for arunava_bakshi@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2151|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|78.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2151|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|78.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2151|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|78.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2151|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|78.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2151|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|78.17 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2151|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|78.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2151|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|78.17 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2151|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|78.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2151|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|78.17 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2151|eCAS_MutualFunds@manipaltechnologies.com|arunava_bakshi@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|78.17 KB|Sent|Message for arunava_bakshi@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2152|eCAS_MutualFunds@manipaltechnologies.com|arunava_chakraborty123@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:21|60.52 KB|Sent|Message for arunava_chakraborty123@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2153|eCAS_MutualFunds@manipaltechnologies.com|arunava_dasgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|72.58 KB|Sent|Message for arunava_dasgupta@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2154|eCAS_MutualFunds@manipaltechnologies.com|arunava_mn15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|51.89 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2154|eCAS_MutualFunds@manipaltechnologies.com|arunava_mn15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|51.89 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2154|eCAS_MutualFunds@manipaltechnologies.com|arunava_mn15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|51.89 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2154|eCAS_MutualFunds@manipaltechnologies.com|arunava_mn15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|51.89 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2154|eCAS_MutualFunds@manipaltechnologies.com|arunava_mn15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|51.89 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2154|eCAS_MutualFunds@manipaltechnologies.com|arunava_mn15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|51.89 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2154|eCAS_MutualFunds@manipaltechnologies.com|arunava_mn15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|51.89 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2154|eCAS_MutualFunds@manipaltechnologies.com|arunava_mn15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|51.89 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2154|eCAS_MutualFunds@manipaltechnologies.com|arunava_mn15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|51.89 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2154|eCAS_MutualFunds@manipaltechnologies.com|arunava_mn15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|51.89 KB|Sent|Message for arunava_mn15@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2155|eCAS_MutualFunds@manipaltechnologies.com|arunavab56@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|56.3 KB|Sent|Message for arunavab56@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2156|eCAS_MutualFunds@manipaltechnologies.com|arunavab56@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|62.87 KB|Sent|Message for arunavab56@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2157|eCAS_MutualFunds@manipaltechnologies.com|arunavabaidya84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:22|58.39 KB|Sent|Message for arunavabaidya84@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2158|eCAS_MutualFunds@manipaltechnologies.com|arunavabaidya84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|64.73 KB|Sent|Message for arunavabaidya84@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2159|eCAS_MutualFunds@manipaltechnologies.com|arunavabala76@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|57.12 KB|Sent|Message for arunavabala76@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2160|eCAS_MutualFunds@manipaltechnologies.com|arunavabanerjee@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|81.1 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2160|eCAS_MutualFunds@manipaltechnologies.com|arunavabanerjee@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|81.1 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +2160|eCAS_MutualFunds@manipaltechnologies.com|arunavabanerjee@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|81.1 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta5.am0.yahoodns.net) +2160|eCAS_MutualFunds@manipaltechnologies.com|arunavabanerjee@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|81.1 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2160|eCAS_MutualFunds@manipaltechnologies.com|arunavabanerjee@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|81.1 KB|HardFail|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +2160|eCAS_MutualFunds@manipaltechnologies.com|arunavabanerjee@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|81.1 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2160|eCAS_MutualFunds@manipaltechnologies.com|arunavabanerjee@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|81.1 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +2160|eCAS_MutualFunds@manipaltechnologies.com|arunavabanerjee@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|81.1 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +2160|eCAS_MutualFunds@manipaltechnologies.com|arunavabanerjee@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|81.1 KB|HardFail|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +2160|eCAS_MutualFunds@manipaltechnologies.com|arunavabanerjee@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|81.1 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +2160|eCAS_MutualFunds@manipaltechnologies.com|arunavabanerjee@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|81.1 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +2161|eCAS_MutualFunds@manipaltechnologies.com|arunavabasu295@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|65.17 KB|Sent|Message for arunavabasu295@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2162|eCAS_MutualFunds@manipaltechnologies.com|arunavabera4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:23|60.12 KB|Sent|Message for arunavabera4@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2163|eCAS_MutualFunds@manipaltechnologies.com|arunavabh2016@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:24|56.61 KB|Sent|Message for arunavabh2016@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2164|eCAS_MutualFunds@manipaltechnologies.com|arunavabhanjadeo52834@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:24|67.57 KB|Sent|Message for arunavabhanjadeo52834@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2165|eCAS_MutualFunds@manipaltechnologies.com|arunavabhar84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:24|62.96 KB|Sent|Message for arunavabhar84@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2166|eCAS_MutualFunds@manipaltechnologies.com|arunavabhattacharjee.2017@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:24|52.39 KB|Sent|Message for arunavabhattacharjee.2017@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2167|eCAS_MutualFunds@manipaltechnologies.com|arunavabute@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:24|73.53 KB|Sent|Message for arunavabute@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2168|eCAS_MutualFunds@manipaltechnologies.com|arunavac09@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:24|57.99 KB|Sent|Message for arunavac09@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2169|eCAS_MutualFunds@manipaltechnologies.com|arunavachak05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:25|60.6 KB|Sent|Message for arunavachak05@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2170|eCAS_MutualFunds@manipaltechnologies.com|arunavachakraborty63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:25|75.73 KB|Sent|Message for arunavachakraborty63@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2171|eCAS_MutualFunds@manipaltechnologies.com|arunavachaudhury1979@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:25|57.03 KB|Sent|Message for arunavachaudhury1979@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2172|eCAS_MutualFunds@manipaltechnologies.com|arunavachoudhury03@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:25|57.91 KB|Sent|Message for arunavachoudhury03@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2173|eCAS_MutualFunds@manipaltechnologies.com|arunavachoudhury49@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:25|58.75 KB|Sent|Message for arunavachoudhury49@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2174|eCAS_MutualFunds@manipaltechnologies.com|arunavadas2013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|66.6 KB|Sent|Message for arunavadas2013@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2175|eCAS_MutualFunds@manipaltechnologies.com|arunavadas23@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|58.11 KB|Sent|Message for arunavadas23@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2176|eCAS_MutualFunds@manipaltechnologies.com|arunavadas86@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.29 KB|Sent|Message for arunavadas86@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2177|eCAS_MutualFunds@manipaltechnologies.com|arunavadatta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|86.11 KB|Sent|Message for arunavadatta@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2178|eCAS_MutualFunds@manipaltechnologies.com|arunavaddi20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:26|60.12 KB|Sent|Message for arunavaddi20@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2179|eCAS_MutualFunds@manipaltechnologies.com|arunavade1@aol.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|62.2 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.75:25 (mx-aol.mail.gm0.yahoodns.net) +2179|eCAS_MutualFunds@manipaltechnologies.com|arunavade1@aol.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|62.2 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.84:25 (mx-aol.mail.gm0.yahoodns.net) +2179|eCAS_MutualFunds@manipaltechnologies.com|arunavade1@aol.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|62.2 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.86:25 (mx-aol.mail.gm0.yahoodns.net) +2179|eCAS_MutualFunds@manipaltechnologies.com|arunavade1@aol.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|62.2 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.86:25 (mx-aol.mail.gm0.yahoodns.net) +2179|eCAS_MutualFunds@manipaltechnologies.com|arunavade1@aol.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|62.2 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.86:25 (mx-aol.mail.gm0.yahoodns.net) +2179|eCAS_MutualFunds@manipaltechnologies.com|arunavade1@aol.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|62.2 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.80:25 (mx-aol.mail.gm0.yahoodns.net) +2179|eCAS_MutualFunds@manipaltechnologies.com|arunavade1@aol.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|62.2 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.92:25 (mx-aol.mail.gm0.yahoodns.net) +2179|eCAS_MutualFunds@manipaltechnologies.com|arunavade1@aol.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|62.2 KB|Sent|Message for arunavade1@aol.com accepted by 67.195.204.75:25 (mx-aol.mail.gm0.yahoodns.net) +2180|eCAS_MutualFunds@manipaltechnologies.com|arunavadey.ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|66.69 KB|Sent|Message for arunavadey.ad@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2181|eCAS_MutualFunds@manipaltechnologies.com|arunavadey.ad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|78.06 KB|Sent|Message for arunavadey.ad@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2182|eCAS_MutualFunds@manipaltechnologies.com|arunavadey@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|57.5 KB|Sent|Message for arunavadey@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +2183|eCAS_MutualFunds@manipaltechnologies.com|arunavadhar13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|51.31 KB|Sent|Message for arunavadhar13@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2184|eCAS_MutualFunds@manipaltechnologies.com|arunavadhikary25@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:27|68.78 KB|Sent|Message for arunavadhikary25@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2185|eCAS_MutualFunds@manipaltechnologies.com|arunavadkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:28|76.2 KB|Sent|Message for arunavadkar@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2186|eCAS_MutualFunds@manipaltechnologies.com|arunavadutta0000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:28|64.07 KB|Sent|Message for arunavadutta0000@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2187|eCAS_MutualFunds@manipaltechnologies.com|arunavadutta0@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:28|66.85 KB|Sent|Message for arunavadutta0@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2188|eCAS_MutualFunds@manipaltechnologies.com|arunavadutta37@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:28|58.27 KB|Sent|Message for arunavadutta37@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2189|eCAS_MutualFunds@manipaltechnologies.com|arunavag172@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:28|77.91 KB|Sent|Message for arunavag172@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2190|eCAS_MutualFunds@manipaltechnologies.com|arunavag@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:29|85.2 KB|Sent|Message for arunavag@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2191|eCAS_MutualFunds@manipaltechnologies.com|arunavag@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:29|81.8 KB|Sent|Message for arunavag@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2192|eCAS_MutualFunds@manipaltechnologies.com|arunavagain0@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:29|59.52 KB|Sent|Message for arunavagain0@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2193|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosal1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:29|65.18 KB|Sent|Message for arunavaghosal1978@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2194|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh03@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:29|80.45 KB|Sent|Message for arunavaghosh03@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2195|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|56.19 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunavaghosh65@gmail.com to suppression list because delivery has failed 18 times. +2196|eCAS_MutualFunds@manipaltechnologies.com|arunavaghosh80@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|67.13 KB|Sent|Message for arunavaghosh80@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2197|eCAS_MutualFunds@manipaltechnologies.com|arunavaghoshin@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|48.6 KB|Sent|Message for arunavaghoshin@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2198|eCAS_MutualFunds@manipaltechnologies.com|arunavaguha677@aircel.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|54.09 KB|Sent|Message for arunavaguha677@aircel.co.in accepted by 74.125.24.27:25 (aspmx.l.google.com) +2199|eCAS_MutualFunds@manipaltechnologies.com|arunavaguha83@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:30|57.2 KB|Sent|Message for arunavaguha83@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2200|eCAS_MutualFunds@manipaltechnologies.com|arunavait78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|88.15 KB|Sent|Message for arunavait78@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2201|eCAS_MutualFunds@manipaltechnologies.com|arunavait78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|56.31 KB|Sent|Message for arunavait78@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2202|eCAS_MutualFunds@manipaltechnologies.com|arunavait78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|55.34 KB|Sent|Message for arunavait78@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2203|eCAS_MutualFunds@manipaltechnologies.com|arunavait@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|63.19 KB|Sent|Message for arunavait@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2204|eCAS_MutualFunds@manipaltechnologies.com|arunavajana.kgp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:31|48.22 KB|Sent|Message for arunavajana.kgp@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2205|eCAS_MutualFunds@manipaltechnologies.com|arunavajyoti92@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|54.53 KB|Sent|Message for arunavajyoti92@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2206|eCAS_MutualFunds@manipaltechnologies.com|arunavakayet8852@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|48.54 KB|Sent|Message for arunavakayet8852@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Temporary SMTP delivery error when sending to 103.180.121.83:25 (mail.visionmoneymantra.com) +2207|eCAS_MutualFunds@manipaltechnologies.com|arunavakhariya1952@visionmoneymantra.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|115.31 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunavakhariya1952@visionmoneymantra.com to suppression list because delivery has failed 18 times. +2208|eCAS_MutualFunds@manipaltechnologies.com|arunavakumar2005@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|57.25 KB|Sent|Message for arunavakumar2005@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2209|eCAS_MutualFunds@manipaltechnologies.com|arunavakundu.1966@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:32|72.1 KB|Sent|Message for arunavakundu.1966@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2210|eCAS_MutualFunds@manipaltechnologies.com|arunavakundu.1966@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:33|55.14 KB|Sent|Message for arunavakundu.1966@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2211|eCAS_MutualFunds@manipaltechnologies.com|arunavamail90@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:33|83.95 KB|Sent|Message for arunavamail90@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2212|eCAS_MutualFunds@manipaltechnologies.com|arunavamajumder.1971@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:33|69.16 KB|Sent|Message for arunavamajumder.1971@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2213|eCAS_MutualFunds@manipaltechnologies.com|arunavamitra681@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:33|70.01 KB|Sent|Message for arunavamitra681@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2214|eCAS_MutualFunds@manipaltechnologies.com|arunavamitra681@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:33|57.32 KB|Sent|Message for arunavamitra681@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2215|eCAS_MutualFunds@manipaltechnologies.com|arunavamitra76@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:33|63.18 KB|Sent|Message for arunavamitra76@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2216|eCAS_MutualFunds@manipaltechnologies.com|arunavamitra76@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:34|65.38 KB|Sent|Message for arunavamitra76@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2217|eCAS_MutualFunds@manipaltechnologies.com|arunavamobile@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:34|59.6 KB|Sent|Message for arunavamobile@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2218|eCAS_MutualFunds@manipaltechnologies.com|arunavamondal3403@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:34|66.58 KB|Sent|Message for arunavamondal3403@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2219|eCAS_MutualFunds@manipaltechnologies.com|arunavamondalgoal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:34|47.5 KB|HardFail|Permanent SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2220|eCAS_MutualFunds@manipaltechnologies.com|arunavamukherjee36@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:34|48.27 KB|Sent|Message for arunavamukherjee36@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2221|eCAS_MutualFunds@manipaltechnologies.com|arunavamukherjee690@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:35|53.78 KB|Sent|Message for arunavamukherjee690@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2222|eCAS_MutualFunds@manipaltechnologies.com|arunavamukhopadhyay61@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:35|66.81 KB|Sent|Message for arunavamukhopadhyay61@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2223|eCAS_MutualFunds@manipaltechnologies.com|arunavangaveti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:35|71.55 KB|Sent|Message for arunavangaveti@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2224|eCAS_MutualFunds@manipaltechnologies.com|arunavapatra556@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:35|84.91 KB|Sent|Message for arunavapatra556@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2225|eCAS_MutualFunds@manipaltechnologies.com|arunavapaul1961@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:35|57.71 KB|Sent|Message for arunavapaul1961@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2226|eCAS_MutualFunds@manipaltechnologies.com|arunavapinka@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:35|72.05 KB|Sent|Message for arunavapinka@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2227|eCAS_MutualFunds@manipaltechnologies.com|arunavapl310@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:36|64.49 KB|Sent|Message for arunavapl310@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2228|eCAS_MutualFunds@manipaltechnologies.com|arunavapmgr1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:36|55.11 KB|Sent|Message for arunavapmgr1@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2229|eCAS_MutualFunds@manipaltechnologies.com|arunavaroy439@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:36|68.86 KB|Sent|Message for arunavaroy439@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2230|eCAS_MutualFunds@manipaltechnologies.com|arunavasahu11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:36|51.85 KB|Sent|Message for arunavasahu11@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2231|eCAS_MutualFunds@manipaltechnologies.com|arunavasarkar5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:36|52.11 KB|Sent|Message for arunavasarkar5@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2232|eCAS_MutualFunds@manipaltechnologies.com|arunavasikdar314@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|67.15 KB|Sent|Message for arunavasikdar314@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2233|eCAS_MutualFunds@manipaltechnologies.com|arunavaskula855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.8 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunavaskula855@gmail.com to suppression list because delivery has failed 18 times. +2234|eCAS_MutualFunds@manipaltechnologies.com|arunavatib@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|58.11 KB|Sent|Message for arunavatib@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2235|eCAS_MutualFunds@manipaltechnologies.com|arunavayansh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:37|55.23 KB|Sent|Message for arunavayansh@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2236|eCAS_MutualFunds@manipaltechnologies.com|arunavbharadwaj007@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:38|67.64 KB|Sent|Message for arunavbharadwaj007@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2237|eCAS_MutualFunds@manipaltechnologies.com|arunavborthakur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:38|89.21 KB|Sent|Message for arunavborthakur@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2238|eCAS_MutualFunds@manipaltechnologies.com|arunavboruah99@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:38|51.34 KB|Sent|Message for arunavboruah99@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2239|eCAS_MutualFunds@manipaltechnologies.com|arunavchakraborty@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:38|70.1 KB|Sent|Message for arunavchakraborty@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2240|eCAS_MutualFunds@manipaltechnologies.com|arunavchakraborty@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:38|71.08 KB|Sent|Message for arunavchakraborty@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2241|eCAS_MutualFunds@manipaltechnologies.com|arunavd30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:39|68.13 KB|Sent|Message for arunavd30@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2242|eCAS_MutualFunds@manipaltechnologies.com|arunavdalvi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:39|62.31 KB|Sent|Message for arunavdalvi@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2243|eCAS_MutualFunds@manipaltechnologies.com|arunavdutta@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:39|67.51 KB|Sent|Message for arunavdutta@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2244|eCAS_MutualFunds@manipaltechnologies.com|arunavel78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:39|62.71 KB|Sent|Message for arunavel78@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2245|eCAS_MutualFunds@manipaltechnologies.com|arunavenkat1908@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:39|61.8 KB|Sent|Message for arunavenkat1908@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2246|eCAS_MutualFunds@manipaltechnologies.com|arunavenkatappa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:39|58.47 KB|Sent|Message for arunavenkatappa@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2247|eCAS_MutualFunds@manipaltechnologies.com|arunavenooru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:40|49.38 KB|Sent|Message for arunavenooru@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2248|eCAS_MutualFunds@manipaltechnologies.com|arunaventis@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:40|60.39 KB|Sent|Message for arunaventis@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2249|eCAS_MutualFunds@manipaltechnologies.com|arunaverma297@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:40|60.65 KB|Sent|Message for arunaverma297@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2250|eCAS_MutualFunds@manipaltechnologies.com|arunaverma888@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:40|69.0 KB|Sent|Message for arunaverma888@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2251|eCAS_MutualFunds@manipaltechnologies.com|arunavermagayabihar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:40|64.94 KB|Sent|Message for arunavermagayabihar@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2252|eCAS_MutualFunds@manipaltechnologies.com|arunavg710@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|57.8 KB|Sent|Message for arunavg710@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2253|eCAS_MutualFunds@manipaltechnologies.com|arunavghosh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|68.71 KB|Sent|Message for arunavghosh@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2254|eCAS_MutualFunds@manipaltechnologies.com|arunavhazarika@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|58.05 KB|Sent|Message for arunavhazarika@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2255|eCAS_MutualFunds@manipaltechnologies.com|arunavi1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|68.29 KB|Sent|Message for arunavi1987@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2256|eCAS_MutualFunds@manipaltechnologies.com|arunavibhute9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:41|54.28 KB|Sent|Message for arunavibhute9@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2257|eCAS_MutualFunds@manipaltechnologies.com|arunavijaya12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:42|52.04 KB|Sent|Message for arunavijaya12@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2258|eCAS_MutualFunds@manipaltechnologies.com|arunavijigiri123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:42|48.31 KB|Sent|Message for arunavijigiri123@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2259|eCAS_MutualFunds@manipaltechnologies.com|arunavimalraj1213@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:42|58.77 KB|Sent|Message for arunavimalraj1213@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2260|eCAS_MutualFunds@manipaltechnologies.com|arunavinod@hotmail.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:42|54.4 KB|Sent|Message for arunavinod@hotmail.co.uk accepted by 52.101.73.3:25 (eur.olc.protection.outlook.com) +2261|eCAS_MutualFunds@manipaltechnologies.com|arunavipradas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:42|50.49 KB|Sent|Message for arunavipradas@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2262|eCAS_MutualFunds@manipaltechnologies.com|arunavkundu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:43|65.1 KB|Sent|Message for arunavkundu@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2263|eCAS_MutualFunds@manipaltechnologies.com|arunavo214@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:43|62.89 KB|Sent|Message for arunavo214@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2264|eCAS_MutualFunds@manipaltechnologies.com|arunavobose1977@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:43|52.3 KB|Sent|Message for arunavobose1977@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2265|eCAS_MutualFunds@manipaltechnologies.com|arunavoleti10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:43|64.12 KB|Sent|Message for arunavoleti10@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2266|eCAS_MutualFunds@manipaltechnologies.com|arunavora1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:43|70.5 KB|Sent|Message for arunavora1@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2267|eCAS_MutualFunds@manipaltechnologies.com|arunavrchandran@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:43|65.54 KB|Sent|Message for arunavrchandran@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2268|eCAS_MutualFunds@manipaltechnologies.com|arunavrm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|64.4 KB|Sent|Message for arunavrm@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2269|eCAS_MutualFunds@manipaltechnologies.com|arunavs@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|69.22 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2269|eCAS_MutualFunds@manipaltechnologies.com|arunavs@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|69.22 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +2269|eCAS_MutualFunds@manipaltechnologies.com|arunavs@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|69.22 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta5.am0.yahoodns.net) +2269|eCAS_MutualFunds@manipaltechnologies.com|arunavs@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|69.22 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2269|eCAS_MutualFunds@manipaltechnologies.com|arunavs@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|69.22 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +2269|eCAS_MutualFunds@manipaltechnologies.com|arunavs@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|69.22 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2269|eCAS_MutualFunds@manipaltechnologies.com|arunavs@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|69.22 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +2269|eCAS_MutualFunds@manipaltechnologies.com|arunavs@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|69.22 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +2269|eCAS_MutualFunds@manipaltechnologies.com|arunavs@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|69.22 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +2269|eCAS_MutualFunds@manipaltechnologies.com|arunavs@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|69.22 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +2269|eCAS_MutualFunds@manipaltechnologies.com|arunavs@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|69.22 KB|Sent|Message for arunavs@ymail.com accepted by 67.195.228.111:25 (mta6.am0.yahoodns.net) +2270|eCAS_MutualFunds@manipaltechnologies.com|arunavsharma108@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|54.89 KB|Sent|Message for arunavsharma108@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2271|eCAS_MutualFunds@manipaltechnologies.com|arunavster@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|57.43 KB|Sent|Message for arunavster@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2272|eCAS_MutualFunds@manipaltechnologies.com|arunavykuntarao@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|60.77 KB|Sent|Message for arunavykuntarao@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2273|eCAS_MutualFunds@manipaltechnologies.com|arunawagh1991@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:44|53.56 KB|Sent|Message for arunawagh1991@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2274|eCAS_MutualFunds@manipaltechnologies.com|arunawalia28@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:45|64.17 KB|Sent|Message for arunawalia28@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2275|eCAS_MutualFunds@manipaltechnologies.com|arunaware1982@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:45|67.66 KB|Sent|Message for arunaware1982@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2276|eCAS_MutualFunds@manipaltechnologies.com|arunawasthi.luc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:45|62.72 KB|Sent|Message for arunawasthi.luc@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2277|eCAS_MutualFunds@manipaltechnologies.com|arunawasthi11171@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:45|68.54 KB|Sent|Message for arunawasthi11171@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2278|eCAS_MutualFunds@manipaltechnologies.com|arunawasthi5867@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:45|51.75 KB|Sent|Message for arunawasthi5867@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2279|eCAS_MutualFunds@manipaltechnologies.com|arunawasthi5867@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|51.66 KB|Sent|Message for arunawasthi5867@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2280|eCAS_MutualFunds@manipaltechnologies.com|arunawasthi94@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|67.5 KB|Sent|Message for arunawasthi94@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2281|eCAS_MutualFunds@manipaltechnologies.com|arunawasthi9827@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.34 KB|Sent|Message for arunawasthi9827@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2282|eCAS_MutualFunds@manipaltechnologies.com|arunay1234@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|76.61 KB|Sent|Message for arunay1234@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2283|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|61.03 KB|Sent|Message for arunayadav01@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2284|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:46|58.46 KB|Sent|Message for arunayadav01@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2285|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|57.85 KB|Sent|Message for arunayadav01@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2286|eCAS_MutualFunds@manipaltechnologies.com|arunayadav01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|56.78 KB|Sent|Message for arunayadav01@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2287|eCAS_MutualFunds@manipaltechnologies.com|arunayadav2960@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|49.52 KB|Sent|Message for arunayadav2960@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2288|eCAS_MutualFunds@manipaltechnologies.com|arunayakasiri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|61.55 KB|Sent|Message for arunayakasiri@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2289|eCAS_MutualFunds@manipaltechnologies.com|arunayd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|61.51 KB|Sent|Message for arunayd@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2290|eCAS_MutualFunds@manipaltechnologies.com|arunaydv123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:47|62.01 KB|Sent|Message for arunaydv123@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2291|eCAS_MutualFunds@manipaltechnologies.com|arunayenugutala663@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:48|79.75 KB|Sent|Message for arunayenugutala663@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2292|eCAS_MutualFunds@manipaltechnologies.com|arunayou@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:48|90.97 KB|Sent|Message for arunayou@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2293|eCAS_MutualFunds@manipaltechnologies.com|arunayush1577@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:48|57.81 KB|Sent|Message for arunayush1577@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2294|eCAS_MutualFunds@manipaltechnologies.com|arunb1171@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:48|51.94 KB|Sent|Message for arunb1171@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2295|eCAS_MutualFunds@manipaltechnologies.com|arunb1395@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:49|81.87 KB|Sent|Message for arunb1395@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2296|eCAS_MutualFunds@manipaltechnologies.com|arunb4199@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:49|60.92 KB|Sent|Message for arunb4199@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2297|eCAS_MutualFunds@manipaltechnologies.com|arunb4611@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:49|57.56 KB|Sent|Message for arunb4611@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2298|eCAS_MutualFunds@manipaltechnologies.com|arunb5828@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:49|49.73 KB|Sent|Message for arunb5828@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2299|eCAS_MutualFunds@manipaltechnologies.com|arunb5944@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:49|76.52 KB|Sent|Message for arunb5944@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2300|eCAS_MutualFunds@manipaltechnologies.com|arunb6043@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:49|62.23 KB|Sent|Message for arunb6043@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2301|eCAS_MutualFunds@manipaltechnologies.com|arunb6043@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:50|63.93 KB|Sent|Message for arunb6043@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2302|eCAS_MutualFunds@manipaltechnologies.com|arunb6472@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:50|59.68 KB|Sent|Message for arunb6472@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2303|eCAS_MutualFunds@manipaltechnologies.com|arunb745@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:50|57.37 KB|Sent|Message for arunb745@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2304|eCAS_MutualFunds@manipaltechnologies.com|arunb9373@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:50|65.84 KB|Sent|Message for arunb9373@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2305|eCAS_MutualFunds@manipaltechnologies.com|arunbab7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:50|54.99 KB|Sent|Message for arunbab7@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2306|eCAS_MutualFunds@manipaltechnologies.com|arunbabakv@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:51|104.96 KB|Sent|Message for arunbabakv@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2307|eCAS_MutualFunds@manipaltechnologies.com|arunbabar1981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:51|56.96 KB|Sent|Message for arunbabar1981@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2308|eCAS_MutualFunds@manipaltechnologies.com|arunbabluilu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:51|61.17 KB|Sent|Message for arunbabluilu@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2309|eCAS_MutualFunds@manipaltechnologies.com|arunbabu.kheratkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:51|62.99 KB|Sent|Message for arunbabu.kheratkar@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2310|eCAS_MutualFunds@manipaltechnologies.com|arunbabu.kheratkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:51|53.88 KB|Sent|Message for arunbabu.kheratkar@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2311|eCAS_MutualFunds@manipaltechnologies.com|arunbabu.n@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|63.85 KB|Sent|Message for arunbabu.n@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2312|eCAS_MutualFunds@manipaltechnologies.com|arunbabu656@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|67.22 KB|Sent|Message for arunbabu656@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2313|eCAS_MutualFunds@manipaltechnologies.com|arunbabu6784@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|50.35 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunbabu6784@gmail.com to suppression list because delivery has failed 18 times. +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2314|eCAS_MutualFunds@manipaltechnologies.com|arunbabu67@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|53.61 KB|Sent|Message for arunbabu67@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2315|eCAS_MutualFunds@manipaltechnologies.com|arunbabu82@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|60.16 KB|Sent|Message for arunbabu82@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2316|eCAS_MutualFunds@manipaltechnologies.com|arunbabu9020@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:52|58.29 KB|Sent|Message for arunbabu9020@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2317|eCAS_MutualFunds@manipaltechnologies.com|arunbabu_2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|63.79 KB|Sent|Message for arunbabu_2000@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2318|eCAS_MutualFunds@manipaltechnologies.com|arunbabuherald@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|55.6 KB|Sent|Message for arunbabuherald@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2319|eCAS_MutualFunds@manipaltechnologies.com|arunbabukallaveettil874@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|66.07 KB|Sent|Message for arunbabukallaveettil874@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2320|eCAS_MutualFunds@manipaltechnologies.com|arunbabukb2@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|52.31 KB|Sent|Message for arunbabukb2@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2321|eCAS_MutualFunds@manipaltechnologies.com|arunbaburao67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|53.48 KB|Sent|Message for arunbaburao67@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2322|eCAS_MutualFunds@manipaltechnologies.com|arunbachhav524@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:53|57.06 KB|Sent|Message for arunbachhav524@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2323|eCAS_MutualFunds@manipaltechnologies.com|arunback86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|72.74 KB|Sent|Message for arunback86@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2324|eCAS_MutualFunds@manipaltechnologies.com|arunbadgil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|51.93 KB|Sent|Message for arunbadgil@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2325|eCAS_MutualFunds@manipaltechnologies.com|arunbadhu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|66.87 KB|Sent|Message for arunbadhu@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2326|eCAS_MutualFunds@manipaltechnologies.com|arunbadiwal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|51.48 KB|Sent|Message for arunbadiwal@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2327|eCAS_MutualFunds@manipaltechnologies.com|arunbadole1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:54|69.15 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunbadole1980@gmail.com to suppression list because delivery has failed 18 times. +2328|eCAS_MutualFunds@manipaltechnologies.com|arunbadoni1988@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:55|57.23 KB|Sent|Message for arunbadoni1988@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2329|eCAS_MutualFunds@manipaltechnologies.com|arunbadre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:55|60.64 KB|Sent|Message for arunbadre@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2330|eCAS_MutualFunds@manipaltechnologies.com|arunbadyals@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:55|61.12 KB|Sent|Message for arunbadyals@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2331|eCAS_MutualFunds@manipaltechnologies.com|arunbag1313@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:55|50.19 KB|Sent|Message for arunbag1313@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2332|eCAS_MutualFunds@manipaltechnologies.com|arunbag1970@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:55|66.08 KB|Sent|Message for arunbag1970@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2333|eCAS_MutualFunds@manipaltechnologies.com|arunbag1970@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:55|68.75 KB|Sent|Message for arunbag1970@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2334|eCAS_MutualFunds@manipaltechnologies.com|arunbag777@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:56|62.34 KB|Sent|Message for arunbag777@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2335|eCAS_MutualFunds@manipaltechnologies.com|arunbagal1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:56|79.19 KB|Sent|Message for arunbagal1234@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2336|eCAS_MutualFunds@manipaltechnologies.com|arunbagde1976@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:56|50.6 KB|Sent|Message for arunbagde1976@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2337|eCAS_MutualFunds@manipaltechnologies.com|arunbaidya65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:56|63.25 KB|Sent|Message for arunbaidya65@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2338|eCAS_MutualFunds@manipaltechnologies.com|arunbaidya65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:56|88.91 KB|Sent|Message for arunbaidya65@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2339|eCAS_MutualFunds@manipaltechnologies.com|arunbaidya8254@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:57|48.14 KB|Sent|Message for arunbaidya8254@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2340|eCAS_MutualFunds@manipaltechnologies.com|arunbaingane1611@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:57|66.45 KB|Sent|Message for arunbaingane1611@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2341|eCAS_MutualFunds@manipaltechnologies.com|arunbais80@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:57|55.58 KB|Sent|Message for arunbais80@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2342|eCAS_MutualFunds@manipaltechnologies.com|arunbajad179@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:57|61.55 KB|Sent|Message for arunbajad179@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2343|eCAS_MutualFunds@manipaltechnologies.com|arunbajaj612@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:57|80.01 KB|Sent|Message for arunbajaj612@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2344|eCAS_MutualFunds@manipaltechnologies.com|arunbajpai20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|53.46 KB|Sent|Message for arunbajpai20@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2345|eCAS_MutualFunds@manipaltechnologies.com|arunbajrangi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|47.87 KB|Sent|Message for arunbajrangi@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2346|eCAS_MutualFunds@manipaltechnologies.com|arunbakari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|79.04 KB|Sent|Message for arunbakari@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2347|eCAS_MutualFunds@manipaltechnologies.com|arunbakari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|61.99 KB|Sent|Message for arunbakari@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2348|eCAS_MutualFunds@manipaltechnologies.com|arunbakhitianee@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|63.73 KB|Sent|Message for arunbakhitianee@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +2349|eCAS_MutualFunds@manipaltechnologies.com|arunbaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:58|78.06 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunbaks@gmail.com to suppression list because delivery has failed 18 times. +2350|eCAS_MutualFunds@manipaltechnologies.com|arunbakshi.7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:59|72.08 KB|Sent|Message for arunbakshi.7@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2351|eCAS_MutualFunds@manipaltechnologies.com|arunbakshi1964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:59|65.72 KB|Sent|Message for arunbakshi1964@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2352|eCAS_MutualFunds@manipaltechnologies.com|arunbakshi1964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:59|75.24 KB|Sent|Message for arunbakshi1964@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2353|eCAS_MutualFunds@manipaltechnologies.com|arunbaktha261@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:59|57.58 KB|Sent|Message for arunbaktha261@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2354|eCAS_MutualFunds@manipaltechnologies.com|arunbal.tanur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:59|53.62 KB|Sent|Message for arunbal.tanur@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2355|eCAS_MutualFunds@manipaltechnologies.com|arunbala.mishra1960@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:05:59|52.29 KB|Sent|Message for arunbala.mishra1960@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2356|eCAS_MutualFunds@manipaltechnologies.com|arunbala.pc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:00|57.6 KB|Sent|Message for arunbala.pc@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2357|eCAS_MutualFunds@manipaltechnologies.com|arunbala0143@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:00|54.33 KB|Sent|Message for arunbala0143@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2358|eCAS_MutualFunds@manipaltechnologies.com|arunbala74@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:00|74.82 KB|Sent|Message for arunbala74@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2359|eCAS_MutualFunds@manipaltechnologies.com|arunbalabharathi17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:00|63.45 KB|Sent|Message for arunbalabharathi17@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2360|eCAS_MutualFunds@manipaltechnologies.com|arunbalachandran21@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:00|110.83 KB|Sent|Message for arunbalachandran21@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2361|eCAS_MutualFunds@manipaltechnologies.com|arunbaladogra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:01|57.12 KB|Sent|Message for arunbaladogra@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2362|eCAS_MutualFunds@manipaltechnologies.com|arunbalagopal@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:01|54.49 KB|Sent|Message for arunbalagopal@hotmail.com accepted by 52.101.194.10:25 (hotmail-com.olc.protection.outlook.com) +2363|eCAS_MutualFunds@manipaltechnologies.com|arunbalagopal@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:01|85.19 KB|Sent|Message for arunbalagopal@hotmail.com accepted by 52.101.194.10:25 (hotmail-com.olc.protection.outlook.com) +2364|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji087@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:01|49.43 KB|Sent|Message for arunbalaji087@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2365|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji1223@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:01|66.9 KB|Sent|Message for arunbalaji1223@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2366|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|97.69 KB|Sent|Message for arunbalaji1985@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2367|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji9870@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|55.67 KB|Sent|Message for arunbalaji9870@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2368|eCAS_MutualFunds@manipaltechnologies.com|arunbalaji_1978@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.36 KB|Sent|Message for arunbalaji_1978@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2369|eCAS_MutualFunds@manipaltechnologies.com|arunbalajiramaniyam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|54.38 KB|Sent|Message for arunbalajiramaniyam@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2370|eCAS_MutualFunds@manipaltechnologies.com|arunbalajirk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|63.78 KB|Sent|Message for arunbalajirk@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2371|eCAS_MutualFunds@manipaltechnologies.com|arunbalajiwlj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:02|66.89 KB|Sent|Message for arunbalajiwlj@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2372|eCAS_MutualFunds@manipaltechnologies.com|arunbalakrishnan1607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|60.45 KB|Sent|Message for arunbalakrishnan1607@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2373|eCAS_MutualFunds@manipaltechnologies.com|arunbalakrishnan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|60.66 KB|Sent|Message for arunbalakrishnan@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2374|eCAS_MutualFunds@manipaltechnologies.com|arunbalan33@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|67.94 KB|Sent|Message for arunbalan33@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2375|eCAS_MutualFunds@manipaltechnologies.com|arunbalash@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|69.7 KB|Sent|Message for arunbalash@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2376|eCAS_MutualFunds@manipaltechnologies.com|arunbalawat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:03|50.34 KB|Sent|Message for arunbalawat@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2377|eCAS_MutualFunds@manipaltechnologies.com|arunballav65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:04|71.24 KB|Sent|Message for arunballav65@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2378|eCAS_MutualFunds@manipaltechnologies.com|arunbalmuchu2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:04|63.83 KB|Sent|Message for arunbalmuchu2@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2379|eCAS_MutualFunds@manipaltechnologies.com|arunbalyan1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:04|56.99 KB|Sent|Message for arunbalyan1980@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2380|eCAS_MutualFunds@manipaltechnologies.com|arunbalyanda@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:04|51.76 KB|Sent|Message for arunbalyanda@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2381|eCAS_MutualFunds@manipaltechnologies.com|arunbamini03@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:04|49.65 KB|Sent|Message for arunbamini03@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2382|eCAS_MutualFunds@manipaltechnologies.com|arunban1946@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:05|73.19 KB|Sent|Message for arunban1946@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2383|eCAS_MutualFunds@manipaltechnologies.com|arunbanacharan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:05|65.9 KB|Sent|Message for arunbanacharan@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2384|eCAS_MutualFunds@manipaltechnologies.com|arunbanarjee01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:05|65.35 KB|Sent|Message for arunbanarjee01@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2385|eCAS_MutualFunds@manipaltechnologies.com|arunbandgar4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:05|61.03 KB|Sent|Message for arunbandgar4@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2386|eCAS_MutualFunds@manipaltechnologies.com|arunbandhoo1401@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:05|67.64 KB|Sent|Message for arunbandhoo1401@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2387|eCAS_MutualFunds@manipaltechnologies.com|arunbandodkar048@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:06|62.02 KB|Sent|Message for arunbandodkar048@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2388|eCAS_MutualFunds@manipaltechnologies.com|arunbandopadhyayjseb@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:06|55.22 KB|Sent|Message for arunbandopadhyayjseb@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2389|eCAS_MutualFunds@manipaltechnologies.com|arunbandyopadhyay57@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:06|51.26 KB|Sent|Message for arunbandyopadhyay57@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2390|eCAS_MutualFunds@manipaltechnologies.com|arunbanerjee021917@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:06|50.82 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2391|eCAS_MutualFunds@manipaltechnologies.com|arunbanerjee81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:06|51.85 KB|Sent|Message for arunbanerjee81@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2392|eCAS_MutualFunds@manipaltechnologies.com|arunbanerjee81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:06|68.05 KB|Sent|Message for arunbanerjee81@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2393|eCAS_MutualFunds@manipaltechnologies.com|arunbanerjijaimaa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:07|67.85 KB|Sent|Message for arunbanerjijaimaa@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2394|eCAS_MutualFunds@manipaltechnologies.com|arunbanerjijaimaa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:07|64.66 KB|Sent|Message for arunbanerjijaimaa@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2395|eCAS_MutualFunds@manipaltechnologies.com|arunbaniyapur6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:07|48.92 KB|Sent|Message for arunbaniyapur6@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2396|eCAS_MutualFunds@manipaltechnologies.com|arunbanjamin8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:07|63.38 KB|Sent|Message for arunbanjamin8@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2397|eCAS_MutualFunds@manipaltechnologies.com|arunbanka3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:07|73.79 KB|Sent|Message for arunbanka3@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2398|eCAS_MutualFunds@manipaltechnologies.com|arunbannanje75@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:08|50.93 KB|Sent|Message for arunbannanje75@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2399|eCAS_MutualFunds@manipaltechnologies.com|arunbannenavar46@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:08|50.56 KB|Sent|Message for arunbannenavar46@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2400|eCAS_MutualFunds@manipaltechnologies.com|arunbanoth76@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:08|50.29 KB|Sent|Message for arunbanoth76@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2401|eCAS_MutualFunds@manipaltechnologies.com|arunbansal.sirsa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:08|70.34 KB|Sent|Message for arunbansal.sirsa@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2402|eCAS_MutualFunds@manipaltechnologies.com|arunbansal0507@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:08|57.0 KB|Sent|Message for arunbansal0507@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2403|eCAS_MutualFunds@manipaltechnologies.com|arunbansal112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:08|63.17 KB|Sent|Message for arunbansal112@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2404|eCAS_MutualFunds@manipaltechnologies.com|arunbansal219@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:09|62.75 KB|Sent|Message for arunbansal219@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2405|eCAS_MutualFunds@manipaltechnologies.com|arunbansal238@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:09|78.42 KB|Sent|Message for arunbansal238@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2406|eCAS_MutualFunds@manipaltechnologies.com|arunbansal437@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:09|63.15 KB|Sent|Message for arunbansal437@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2407|eCAS_MutualFunds@manipaltechnologies.com|arunbansal764@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:09|51.79 KB|Sent|Message for arunbansal764@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2408|eCAS_MutualFunds@manipaltechnologies.com|arunbansaljan26@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:09|71.03 KB|Sent|Message for arunbansaljan26@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2409|eCAS_MutualFunds@manipaltechnologies.com|arunbansod7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:10|65.42 KB|Sent|Message for arunbansod7@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2410|eCAS_MutualFunds@manipaltechnologies.com|arunbar1000@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:10|50.91 KB|Sent|Message for arunbar1000@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2411|eCAS_MutualFunds@manipaltechnologies.com|arunbarad13698@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:10|60.35 KB|Sent|Message for arunbarad13698@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2412|eCAS_MutualFunds@manipaltechnologies.com|arunbaran33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:10|76.58 KB|Sent|Message for arunbaran33@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2413|eCAS_MutualFunds@manipaltechnologies.com|arunbaranwal2016@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:10|65.67 KB|Sent|Message for arunbaranwal2016@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2414|eCAS_MutualFunds@manipaltechnologies.com|arunbarcams@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:10|49.56 KB|Sent|Message for arunbarcams@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2415|eCAS_MutualFunds@manipaltechnologies.com|arunbareja678@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:11|52.03 KB|Sent|Message for arunbareja678@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2416|eCAS_MutualFunds@manipaltechnologies.com|arunbari46@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:11|55.86 KB|Sent|Message for arunbari46@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2417|eCAS_MutualFunds@manipaltechnologies.com|arunbarik1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:11|59.7 KB|Sent|Message for arunbarik1973@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2418|eCAS_MutualFunds@manipaltechnologies.com|arunbariya832@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:11|52.6 KB|Sent|Message for arunbariya832@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2419|eCAS_MutualFunds@manipaltechnologies.com|arunbarla05228@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:11|54.02 KB|Sent|Message for arunbarla05228@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2420|eCAS_MutualFunds@manipaltechnologies.com|arunbarman188@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:12|56.94 KB|Sent|Message for arunbarman188@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2421|eCAS_MutualFunds@manipaltechnologies.com|arunbarnikana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:12|49.48 KB|Sent|Message for arunbarnikana@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2422|eCAS_MutualFunds@manipaltechnologies.com|arunbarnwal506@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:12|59.92 KB|Sent|Message for arunbarnwal506@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2423|eCAS_MutualFunds@manipaltechnologies.com|arunbarotiya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:12|61.97 KB|Sent|Message for arunbarotiya@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2424|eCAS_MutualFunds@manipaltechnologies.com|arunbarthwal01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:12|71.53 KB|Sent|Message for arunbarthwal01@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2425|eCAS_MutualFunds@manipaltechnologies.com|arunbarua@msn.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:12|73.57 KB|Sent|Message for arunbarua@msn.com accepted by 52.101.42.15:25 (msn-com.olc.protection.outlook.com) +2426|eCAS_MutualFunds@manipaltechnologies.com|arunbaruah31@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:13|67.21 KB|Sent|Message for arunbaruah31@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2427|eCAS_MutualFunds@manipaltechnologies.com|arunbasha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:13|67.7 KB|Sent|Message for arunbasha@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2428|eCAS_MutualFunds@manipaltechnologies.com|arunbasin6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:13|72.58 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2429|eCAS_MutualFunds@manipaltechnologies.com|arunbask@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:13|55.4 KB|Sent|Message for arunbask@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2430|eCAS_MutualFunds@manipaltechnologies.com|arunbaskar83@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:13|61.01 KB|Sent|Message for arunbaskar83@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2431|eCAS_MutualFunds@manipaltechnologies.com|arunbasu1957@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:13|56.74 KB|Sent|Message for arunbasu1957@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2432|eCAS_MutualFunds@manipaltechnologies.com|arunbasu4146@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:14|56.31 KB|Sent|Message for arunbasu4146@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2433|eCAS_MutualFunds@manipaltechnologies.com|arunbasuta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:14|64.51 KB|Sent|Message for arunbasuta@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2434|eCAS_MutualFunds@manipaltechnologies.com|arunbatabyal387@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:14|73.93 KB|Sent|Message for arunbatabyal387@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2435|eCAS_MutualFunds@manipaltechnologies.com|arunbatra555@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:14|85.41 KB|Sent|Message for arunbatra555@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2436|eCAS_MutualFunds@manipaltechnologies.com|arunbattu.kumar9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:14|57.34 KB|Sent|Message for arunbattu.kumar9@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2437|eCAS_MutualFunds@manipaltechnologies.com|arunbauri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|52.23 KB|Sent|Message for arunbauri@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2438|eCAS_MutualFunds@manipaltechnologies.com|arunbauri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|52.91 KB|Sent|Message for arunbauri@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2439|eCAS_MutualFunds@manipaltechnologies.com|arunbaviskar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|63.33 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2440|eCAS_MutualFunds@manipaltechnologies.com|arunbbhoir4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:15|67.02 KB|Sent|Message for arunbbhoir4@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2441|eCAS_MutualFunds@manipaltechnologies.com|arunbdmomukherjee@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:16|64.43 KB|Sent|Message for arunbdmomukherjee@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2442|eCAS_MutualFunds@manipaltechnologies.com|arunbdn46@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:16|63.72 KB|Sent|Message for arunbdn46@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2443|eCAS_MutualFunds@manipaltechnologies.com|arunbdubey75@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:16|65.49 KB|Sent|Message for arunbdubey75@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2444|eCAS_MutualFunds@manipaltechnologies.com|arunbdwaj4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:16|57.08 KB|Sent|Message for arunbdwaj4@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2445|eCAS_MutualFunds@manipaltechnologies.com|arunbearings@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:16|66.88 KB|Sent|Message for arunbearings@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2446|eCAS_MutualFunds@manipaltechnologies.com|arunbecalm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:17|54.65 KB|Sent|Message for arunbecalm@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2447|eCAS_MutualFunds@manipaltechnologies.com|arunbedboy5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:17|59.42 KB|Sent|Message for arunbedboy5@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2448|eCAS_MutualFunds@manipaltechnologies.com|arunbedikyale@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:17|49.27 KB|Sent|Message for arunbedikyale@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2449|eCAS_MutualFunds@manipaltechnologies.com|arunbegusaraiairgases@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:17|48.18 KB|Sent|Message for arunbegusaraiairgases@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2450|eCAS_MutualFunds@manipaltechnologies.com|arunbehera.2007@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:17|54.01 KB|Sent|Message for arunbehera.2007@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2451|eCAS_MutualFunds@manipaltechnologies.com|arunbehera10101971@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:18|60.15 KB|Sent|Message for arunbehera10101971@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2452|eCAS_MutualFunds@manipaltechnologies.com|arunbehera1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:18|66.5 KB|Sent|Message for arunbehera1234@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2453|eCAS_MutualFunds@manipaltechnologies.com|arunbehera1306@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:18|54.21 KB|Sent|Message for arunbehera1306@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2454|eCAS_MutualFunds@manipaltechnologies.com|arunbehera4621@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:18|52.81 KB|Sent|Message for arunbehera4621@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2455|eCAS_MutualFunds@manipaltechnologies.com|arunbehera9183@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:18|48.96 KB|Sent|Message for arunbehera9183@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2456|eCAS_MutualFunds@manipaltechnologies.com|arunbehera@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:19|61.43 KB|Sent|Message for arunbehera@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2457|eCAS_MutualFunds@manipaltechnologies.com|arunbehl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:19|56.25 KB|Sent|Message for arunbehl@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2458|eCAS_MutualFunds@manipaltechnologies.com|arunbelroad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:19|52.85 KB|Sent|Message for arunbelroad@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2459|eCAS_MutualFunds@manipaltechnologies.com|arunben1966@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:19|89.44 KB|Sent|Message for arunben1966@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2460|eCAS_MutualFunds@manipaltechnologies.com|arunbennythomas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:20|75.68 KB|Sent|Message for arunbennythomas@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2461|eCAS_MutualFunds@manipaltechnologies.com|arunbenod2001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:20|51.67 KB|Sent|Message for arunbenod2001@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2462|eCAS_MutualFunds@manipaltechnologies.com|arunbeohar24@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:20|67.03 KB|Sent|Message for arunbeohar24@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2463|eCAS_MutualFunds@manipaltechnologies.com|arunbera0403@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:20|62.54 KB|Sent|Message for arunbera0403@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2464|eCAS_MutualFunds@manipaltechnologies.com|arunbera53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:20|58.72 KB|Sent|Message for arunbera53@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2465|eCAS_MutualFunds@manipaltechnologies.com|arunbera570@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|60.56 KB|Sent|Message for arunbera570@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2466|eCAS_MutualFunds@manipaltechnologies.com|arunbethekar76@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|51.64 KB|Sent|Message for arunbethekar76@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +2467|eCAS_MutualFunds@manipaltechnologies.com|arunbethi53@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|50.27 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunbethi53@gmail.com to suppression list because delivery has failed 18 times. +2468|eCAS_MutualFunds@manipaltechnologies.com|arunbezbaruah40@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|54.86 KB|Sent|Message for arunbezbaruah40@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2469|eCAS_MutualFunds@manipaltechnologies.com|arunbgeorge@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:21|66.46 KB|Sent|Message for arunbgeorge@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2470|eCAS_MutualFunds@manipaltechnologies.com|arunbgkt@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|58.83 KB|Sent|Message for arunbgkt@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2471|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|73.39 KB|Sent|Message for arunbgopal@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2472|eCAS_MutualFunds@manipaltechnologies.com|arunbgopal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.67 KB|Sent|Message for arunbgopal@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2473|eCAS_MutualFunds@manipaltechnologies.com|arunbhabat902@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|61.51 KB|Sent|Message for arunbhabat902@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2474|eCAS_MutualFunds@manipaltechnologies.com|arunbhadani10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:22|63.12 KB|Sent|Message for arunbhadani10@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2475|eCAS_MutualFunds@manipaltechnologies.com|arunbhadani10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:23|64.75 KB|Sent|Message for arunbhadani10@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2476|eCAS_MutualFunds@manipaltechnologies.com|arunbhadauria.1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:23|61.69 KB|Sent|Message for arunbhadauria.1962@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2477|eCAS_MutualFunds@manipaltechnologies.com|arunbhadauria.1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:23|65.79 KB|Sent|Message for arunbhadauria.1962@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2478|eCAS_MutualFunds@manipaltechnologies.com|arunbhadauriya7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:23|56.37 KB|Sent|Message for arunbhadauriya7@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2479|eCAS_MutualFunds@manipaltechnologies.com|arunbhadra0@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:24|58.38 KB|Sent|Message for arunbhadra0@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2480|eCAS_MutualFunds@manipaltechnologies.com|arunbhagat270@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:24|72.23 KB|Sent|Message for arunbhagat270@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2481|eCAS_MutualFunds@manipaltechnologies.com|arunbhagat2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:24|49.32 KB|Sent|Message for arunbhagat2@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2482|eCAS_MutualFunds@manipaltechnologies.com|arunbhagat891@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:24|62.04 KB|Sent|Message for arunbhagat891@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2483|eCAS_MutualFunds@manipaltechnologies.com|arunbhagat968@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:24|63.55 KB|Sent|Message for arunbhagat968@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2484|eCAS_MutualFunds@manipaltechnologies.com|arunbhagathistory@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:25|66.96 KB|Sent|Message for arunbhagathistory@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2485|eCAS_MutualFunds@manipaltechnologies.com|arunbhagawati66@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:25|59.07 KB|Sent|Message for arunbhagawati66@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2486|eCAS_MutualFunds@manipaltechnologies.com|arunbhagwat.081968@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:25|71.36 KB|Sent|Message for arunbhagwat.081968@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2487|eCAS_MutualFunds@manipaltechnologies.com|arunbhai1340@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:25|49.4 KB|Sent|Message for arunbhai1340@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2488|eCAS_MutualFunds@manipaltechnologies.com|arunbhaidhrangi50917@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:25|56.91 KB|Sent|Message for arunbhaidhrangi50917@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2489|eCAS_MutualFunds@manipaltechnologies.com|arunbhaijumnal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:26|49.58 KB|Sent|Message for arunbhaijumnal@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2490|eCAS_MutualFunds@manipaltechnologies.com|arunbhaikta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:26|51.14 KB|Sent|Message for arunbhaikta@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2491|eCAS_MutualFunds@manipaltechnologies.com|arunbhaiparmar694@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:26|62.0 KB|Sent|Message for arunbhaiparmar694@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2492|eCAS_MutualFunds@manipaltechnologies.com|arunbhaisuikar73536@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:26|56.55 KB|Sent|Message for arunbhaisuikar73536@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2493|eCAS_MutualFunds@manipaltechnologies.com|arunbhajibhakare6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:26|58.79 KB|Sent|Message for arunbhajibhakare6@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2494|eCAS_MutualFunds@manipaltechnologies.com|arunbhakat2957@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:27|48.67 KB|Sent|Message for arunbhakat2957@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2495|eCAS_MutualFunds@manipaltechnologies.com|arunbhakte115@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:27|57.34 KB|Sent|Message for arunbhakte115@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2496|eCAS_MutualFunds@manipaltechnologies.com|arunbhala@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:27|54.28 KB|Sent|Message for arunbhala@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2497|eCAS_MutualFunds@manipaltechnologies.com|arunbhalchandrapatil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:27|64.99 KB|Sent|Message for arunbhalchandrapatil@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2498|eCAS_MutualFunds@manipaltechnologies.com|arunbhalla123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:27|52.81 KB|Sent|Message for arunbhalla123@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2499|eCAS_MutualFunds@manipaltechnologies.com|arunbhamare3300@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|50.56 KB|Sent|Message for arunbhamare3300@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2500|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari301964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|53.96 KB|Sent|Message for arunbhandari301964@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2501|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari42@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|58.64 KB|Sent|Message for arunbhandari42@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2502|eCAS_MutualFunds@manipaltechnologies.com|arunbhandari_in@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|64.83 KB|Sent|Message for arunbhandari_in@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2503|eCAS_MutualFunds@manipaltechnologies.com|arunbhandarichd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:28|49.1 KB|Sent|Message for arunbhandarichd@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2504|eCAS_MutualFunds@manipaltechnologies.com|arunbhange20074@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|54.98 KB|Sent|Message for arunbhange20074@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2505|eCAS_MutualFunds@manipaltechnologies.com|arunbhanuse6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|58.58 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunbhanuse6@gmail.com to suppression list because delivery has failed 18 times. +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2506|eCAS_MutualFunds@manipaltechnologies.com|arunbhanusuresh@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|70.8 KB|Sent|Message for arunbhanusuresh@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2507|eCAS_MutualFunds@manipaltechnologies.com|arunbhapanigrahi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|48.77 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2508|eCAS_MutualFunds@manipaltechnologies.com|arunbharali55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|57.14 KB|Sent|Message for arunbharali55@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2509|eCAS_MutualFunds@manipaltechnologies.com|arunbharambe03914@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:29|56.37 KB|Sent|Message for arunbharambe03914@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2510|eCAS_MutualFunds@manipaltechnologies.com|arunbharara57@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:30|62.62 KB|Sent|Message for arunbharara57@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2511|eCAS_MutualFunds@manipaltechnologies.com|arunbharathi86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:30|55.26 KB|Sent|Message for arunbharathi86@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2512|eCAS_MutualFunds@manipaltechnologies.com|arunbharathv@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:30|72.79 KB|Sent|Message for arunbharathv@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2513|eCAS_MutualFunds@manipaltechnologies.com|arunbharatiya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:30|59.8 KB|Sent|Message for arunbharatiya@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2514|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj169@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:30|58.83 KB|Sent|Message for arunbhardwaj169@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2515|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|51.88 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunbhardwaj1983@gmail.com to suppression list because delivery has failed 18 times. +2516|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj2037@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|69.12 KB|Sent|Message for arunbhardwaj2037@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2517|eCAS_MutualFunds@manipaltechnologies.com|arunbhardwaj9891@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|63.65 KB|Sent|Message for arunbhardwaj9891@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2518|eCAS_MutualFunds@manipaltechnologies.com|arunbhargava88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|56.83 KB|Sent|Message for arunbhargava88@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2519|eCAS_MutualFunds@manipaltechnologies.com|arunbhargava88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|53.32 KB|Sent|Message for arunbhargava88@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2520|eCAS_MutualFunds@manipaltechnologies.com|arunbhargavan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:31|56.8 KB|Sent|Message for arunbhargavan@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2521|eCAS_MutualFunds@manipaltechnologies.com|arunbharrat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:32|59.69 KB|Sent|Message for arunbharrat@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2522|eCAS_MutualFunds@manipaltechnologies.com|arunbharti26257@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:32|62.36 KB|Sent|Message for arunbharti26257@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2523|eCAS_MutualFunds@manipaltechnologies.com|arunbharti40321@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:32|49.52 KB|Sent|Message for arunbharti40321@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2524|eCAS_MutualFunds@manipaltechnologies.com|arunbharti69@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:32|51.2 KB|Sent|Message for arunbharti69@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2525|eCAS_MutualFunds@manipaltechnologies.com|arunbharvibhatia@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:32|78.76 KB|Sent|Message for arunbharvibhatia@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2526|eCAS_MutualFunds@manipaltechnologies.com|arunbhasi4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:32|50.11 KB|Sent|Message for arunbhasi4@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2527|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|60.74 KB|Sent|Message for arunbhaskar001@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2528|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskar2203@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|69.37 KB|Sent|Message for arunbhaskar2203@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2529|eCAS_MutualFunds@manipaltechnologies.com|arunbhaskarca@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|52.75 KB|Sent|Message for arunbhaskarca@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2530|eCAS_MutualFunds@manipaltechnologies.com|arunbhatia099@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:33|78.86 KB|Sent|Message for arunbhatia099@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2531|eCAS_MutualFunds@manipaltechnologies.com|arunbhatia099@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|59.63 KB|Sent|Message for arunbhatia099@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2532|eCAS_MutualFunds@manipaltechnologies.com|arunbhatia099@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|65.88 KB|Sent|Message for arunbhatia099@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2533|eCAS_MutualFunds@manipaltechnologies.com|arunbhatia78114@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|72.79 KB|Sent|Message for arunbhatia78114@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2534|eCAS_MutualFunds@manipaltechnologies.com|arunbhatiajind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|52.77 KB|Sent|Message for arunbhatiajind@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2535|eCAS_MutualFunds@manipaltechnologies.com|arunbhatnagar.kccsl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:34|59.42 KB|Sent|Message for arunbhatnagar.kccsl@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2536|eCAS_MutualFunds@manipaltechnologies.com|arunbhatnagar732@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|51.06 KB|Sent|Message for arunbhatnagar732@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2537|eCAS_MutualFunds@manipaltechnologies.com|arunbhatnagardhfl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|75.39 KB|Sent|Message for arunbhatnagardhfl@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2538|eCAS_MutualFunds@manipaltechnologies.com|arunbhatnr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|70.67 KB|Sent|Message for arunbhatnr@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2539|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|92.14 KB|Sent|Message for arunbhatt20@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2540|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt31@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:35|52.02 KB|Sent|Message for arunbhatt31@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2541|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt5417@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:36|67.04 KB|Sent|Message for arunbhatt5417@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2542|eCAS_MutualFunds@manipaltechnologies.com|arunbhatt655@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:36|63.52 KB|Sent|Message for arunbhatt655@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2543|eCAS_MutualFunds@manipaltechnologies.com|arunbhatta1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:36|58.52 KB|Sent|Message for arunbhatta1987@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2544|eCAS_MutualFunds@manipaltechnologies.com|arunbhattacha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:37|68.07 KB|Sent|Message for arunbhattacha@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2545|eCAS_MutualFunds@manipaltechnologies.com|arunbhattacharya035@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:37|67.26 KB|Sent|Message for arunbhattacharya035@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2546|eCAS_MutualFunds@manipaltechnologies.com|arunbhattacharya123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:38|55.4 KB|Sent|Message for arunbhattacharya123@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2547|eCAS_MutualFunds@manipaltechnologies.com|arunbhattacharya655@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:38|81.53 KB|Sent|Message for arunbhattacharya655@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2548|eCAS_MutualFunds@manipaltechnologies.com|arunbhattacharyya41@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:38|50.87 KB|Sent|Message for arunbhattacharyya41@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2549|eCAS_MutualFunds@manipaltechnologies.com|arunbhattachrgee1976@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:39|59.73 KB|Sent|Message for arunbhattachrgee1976@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2550|eCAS_MutualFunds@manipaltechnologies.com|arunbhattc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:39|60.65 KB|Sent|Message for arunbhattc@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2551|eCAS_MutualFunds@manipaltechnologies.com|arunbhavikatti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:39|65.92 KB|Sent|Message for arunbhavikatti@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2552|eCAS_MutualFunds@manipaltechnologies.com|arunbhavnath@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:40|56.72 KB|Sent|Message for arunbhavnath@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2553|eCAS_MutualFunds@manipaltechnologies.com|arunbhavsar1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:40|65.18 KB|Sent|Message for arunbhavsar1@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2554|eCAS_MutualFunds@manipaltechnologies.com|arunbhavsar7454@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:40|51.34 KB|Sent|Message for arunbhavsar7454@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2555|eCAS_MutualFunds@manipaltechnologies.com|arunbhawana@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.77 KB|Sent|Message for arunbhawana@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2556|eCAS_MutualFunds@manipaltechnologies.com|arunbherwe11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|64.5 KB|Sent|Message for arunbherwe11@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2557|eCAS_MutualFunds@manipaltechnologies.com|arunbhide1944@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:41|56.8 KB|Sent|Message for arunbhide1944@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2558|eCAS_MutualFunds@manipaltechnologies.com|arunbhimani.lifecare@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:42|73.0 KB|Sent|Message for arunbhimani.lifecare@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2559|eCAS_MutualFunds@manipaltechnologies.com|arunbhivgade123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:42|53.99 KB|Sent|Message for arunbhivgade123@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2560|eCAS_MutualFunds@manipaltechnologies.com|arunbhod1721982@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:42|49.07 KB|Sent|Message for arunbhod1721982@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2561|eCAS_MutualFunds@manipaltechnologies.com|arunbhoi419@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:42|54.85 KB|Sent|Message for arunbhoi419@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2562|eCAS_MutualFunds@manipaltechnologies.com|arunbhoir1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:43|65.61 KB|Sent|Message for arunbhoir1978@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2563|eCAS_MutualFunds@manipaltechnologies.com|arunbhoir1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:43|57.78 KB|Sent|Message for arunbhoir1978@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2564|eCAS_MutualFunds@manipaltechnologies.com|arunbhopal1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:43|60.52 KB|Sent|Message for arunbhopal1985@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2565|eCAS_MutualFunds@manipaltechnologies.com|arunbhosale165@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:44|55.84 KB|Sent|Message for arunbhosale165@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2566|eCAS_MutualFunds@manipaltechnologies.com|arunbhosale67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:44|68.45 KB|Sent|Message for arunbhosale67@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2567|eCAS_MutualFunds@manipaltechnologies.com|arunbhowmick03@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:44|64.42 KB|Sent|Message for arunbhowmick03@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2568|eCAS_MutualFunds@manipaltechnologies.com|arunbhowmik432@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:45|73.42 KB|Sent|Message for arunbhowmik432@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2569|eCAS_MutualFunds@manipaltechnologies.com|arunbhoybar3915@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:45|55.44 KB|Sent|Message for arunbhoybar3915@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2570|eCAS_MutualFunds@manipaltechnologies.com|arunbhunia888@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:45|72.23 KB|Sent|Message for arunbhunia888@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2571|eCAS_MutualFunds@manipaltechnologies.com|arunbhusan22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:46|55.3 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2572|eCAS_MutualFunds@manipaltechnologies.com|arunbhutekar55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:46|67.55 KB|Sent|Message for arunbhutekar55@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2573|eCAS_MutualFunds@manipaltechnologies.com|arunbhuvad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:46|69.31 KB|Sent|Message for arunbhuvad@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2574|eCAS_MutualFunds@manipaltechnologies.com|arunbhuvir@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:46|48.75 KB|Sent|Message for arunbhuvir@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2575|eCAS_MutualFunds@manipaltechnologies.com|arunbhuyan12345@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:46|51.24 KB|Sent|Message for arunbhuyan12345@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2576|eCAS_MutualFunds@manipaltechnologies.com|arunbijarniajaat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:46|62.18 KB|Sent|Message for arunbijarniajaat@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2577|eCAS_MutualFunds@manipaltechnologies.com|arunbijwe@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.08 KB|Sent|Message for arunbijwe@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2578|eCAS_MutualFunds@manipaltechnologies.com|arunbikashghosal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|57.28 KB|Sent|Message for arunbikashghosal@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2579|eCAS_MutualFunds@manipaltechnologies.com|arunbikkiyavararun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|49.42 KB|Sent|Message for arunbikkiyavararun@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2580|eCAS_MutualFunds@manipaltechnologies.com|arunbikram@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|52.26 KB|Sent|Message for arunbikram@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2581|eCAS_MutualFunds@manipaltechnologies.com|arunbilu@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:47|64.2 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2582|eCAS_MutualFunds@manipaltechnologies.com|arunbilung@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:48|57.16 KB|Sent|Message for arunbilung@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2583|eCAS_MutualFunds@manipaltechnologies.com|arunbinani13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:48|64.93 KB|Sent|Message for arunbinani13@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2584|eCAS_MutualFunds@manipaltechnologies.com|arunbinani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:48|72.75 KB|Sent|Message for arunbinani@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2585|eCAS_MutualFunds@manipaltechnologies.com|arunbinasingh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:48|57.17 KB|Sent|Message for arunbinasingh@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2586|eCAS_MutualFunds@manipaltechnologies.com|arunbindal345@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:48|55.84 KB|Sent|Message for arunbindal345@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2587|eCAS_MutualFunds@manipaltechnologies.com|arunbindal345@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:48|54.69 KB|Sent|Message for arunbindal345@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2588|eCAS_MutualFunds@manipaltechnologies.com|arunbindu1718@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:49|54.67 KB|Sent|Message for arunbindu1718@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2589|eCAS_MutualFunds@manipaltechnologies.com|arunbiradi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:49|48.33 KB|Sent|Message for arunbiradi@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2590|eCAS_MutualFunds@manipaltechnologies.com|arunbirar378@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:49|69.2 KB|Sent|Message for arunbirar378@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2591|eCAS_MutualFunds@manipaltechnologies.com|arunbirj027@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:49|54.7 KB|Sent|Message for arunbirj027@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2592|eCAS_MutualFunds@manipaltechnologies.com|arunbishnoi85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:49|47.2 KB|Sent|Message for arunbishnoi85@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2593|eCAS_MutualFunds@manipaltechnologies.com|arunbisht123456789@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:49|71.58 KB|Sent|Message for arunbisht123456789@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2594|eCAS_MutualFunds@manipaltechnologies.com|arunbiswal952@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:50|67.63 KB|Sent|Message for arunbiswal952@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2595|eCAS_MutualFunds@manipaltechnologies.com|arunbiswas0410@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:50|55.03 KB|Sent|Message for arunbiswas0410@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2596|eCAS_MutualFunds@manipaltechnologies.com|arunbiswas1828@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:50|57.94 KB|Sent|Message for arunbiswas1828@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2597|eCAS_MutualFunds@manipaltechnologies.com|arunbiswas1939@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:50|63.64 KB|Sent|Message for arunbiswas1939@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2598|eCAS_MutualFunds@manipaltechnologies.com|arunbiswas2236@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:50|58.05 KB|Sent|Message for arunbiswas2236@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2599|eCAS_MutualFunds@manipaltechnologies.com|arunbiz@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|60.83 KB|Sent|Message for arunbiz@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2600|eCAS_MutualFunds@manipaltechnologies.com|arunbjalan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|57.99 KB|Sent|Message for arunbjalan@yahoo.com accepted by 98.136.96.91:25 (mta7.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +2601|eCAS_MutualFunds@manipaltechnologies.com|arunbjoshi2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|49.49 KB|Sent|Message for arunbjoshi2001@yahoo.com accepted by 67.195.228.110:25 (mta7.am0.yahoodns.net) +2602|eCAS_MutualFunds@manipaltechnologies.com|arunbk905@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|50.37 KB|Sent|Message for arunbk905@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2603|eCAS_MutualFunds@manipaltechnologies.com|arunbkakade@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|67.37 KB|Sent|Message for arunbkakade@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2604|eCAS_MutualFunds@manipaltechnologies.com|arunbkakade@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:51|58.84 KB|Sent|Message for arunbkakade@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2605|eCAS_MutualFunds@manipaltechnologies.com|arunbksk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|57.21 KB|Sent|Message for arunbksk@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +2606|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.06 KB|Sent|Message for arunblossoms@yahoo.com accepted by 67.195.228.110:25 (mta7.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +2607|eCAS_MutualFunds@manipaltechnologies.com|arunblossoms@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|67.41 KB|Sent|Message for arunblossoms@yahoo.com accepted by 67.195.228.110:25 (mta7.am0.yahoodns.net) +2608|eCAS_MutualFunds@manipaltechnologies.com|arunblr16@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|68.12 KB|Sent|Message for arunblr16@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2609|eCAS_MutualFunds@manipaltechnologies.com|arunbm1971@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:52|66.13 KB|Sent|Message for arunbm1971@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2610|eCAS_MutualFunds@manipaltechnologies.com|arunbm25@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:53|77.51 KB|Sent|Message for arunbm25@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2611|eCAS_MutualFunds@manipaltechnologies.com|arunbmore09@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:53|65.47 KB|Sent|Message for arunbmore09@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2612|eCAS_MutualFunds@manipaltechnologies.com|arunbng2021@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:53|52.44 KB|Sent|Message for arunbng2021@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2613|eCAS_MutualFunds@manipaltechnologies.com|arunboddu1974@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:53|48.57 KB|Sent|Message for arunboddu1974@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2614|eCAS_MutualFunds@manipaltechnologies.com|arunbodke04@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:53|47.58 KB|Sent|Message for arunbodke04@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2615|eCAS_MutualFunds@manipaltechnologies.com|arunbodya1956@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:53|52.34 KB|Sent|Message for arunbodya1956@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +2616|eCAS_MutualFunds@manipaltechnologies.com|arunbogar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|89.57 KB|Sent|Message for arunbogar@yahoo.com accepted by 67.195.228.110:25 (mta7.am0.yahoodns.net) +2617|eCAS_MutualFunds@manipaltechnologies.com|arunbohra2015@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|57.9 KB|Sent|Message for arunbohra2015@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2618|eCAS_MutualFunds@manipaltechnologies.com|arunboi88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|54.37 KB|Sent|Message for arunboi88@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2619|eCAS_MutualFunds@manipaltechnologies.com|arunbojja131@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|55.93 KB|Sent|Message for arunbojja131@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2620|eCAS_MutualFunds@manipaltechnologies.com|arunbomby@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|62.6 KB|Sent|Message for arunbomby@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2621|eCAS_MutualFunds@manipaltechnologies.com|arunbopche2211@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:54|49.96 KB|Sent|Message for arunbopche2211@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2622|eCAS_MutualFunds@manipaltechnologies.com|arunbora555@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:55|55.8 KB|Sent|Message for arunbora555@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2623|eCAS_MutualFunds@manipaltechnologies.com|arunborah697@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:55|71.84 KB|Sent|Message for arunborah697@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2624|eCAS_MutualFunds@manipaltechnologies.com|arunborana@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:55|47.43 KB|Sent|Message for arunborana@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2625|eCAS_MutualFunds@manipaltechnologies.com|arunborole7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:55|68.96 KB|Sent|Message for arunborole7@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2626|eCAS_MutualFunds@manipaltechnologies.com|arunboruah563@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:55|48.23 KB|Sent|Message for arunboruah563@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2627|eCAS_MutualFunds@manipaltechnologies.com|arunbosale@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|71.99 KB|HardFail|Permanent SMTP delivery error when sending to 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2628|eCAS_MutualFunds@manipaltechnologies.com|arunbose251@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|55.04 KB|Sent|Message for arunbose251@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +2629|eCAS_MutualFunds@manipaltechnologies.com|arunboya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.81 KB|Sent|Message for arunboya@yahoo.com accepted by 67.195.228.110:25 (mta7.am0.yahoodns.net) +2630|eCAS_MutualFunds@manipaltechnologies.com|arunbozz100@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|54.65 KB|Sent|Message for arunbozz100@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2631|eCAS_MutualFunds@manipaltechnologies.com|arunbpawar2013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|57.18 KB|Sent|Message for arunbpawar2013@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2632|eCAS_MutualFunds@manipaltechnologies.com|arunbpoojari05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:56|51.91 KB|Sent|Message for arunbpoojari05@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2633|eCAS_MutualFunds@manipaltechnologies.com|arunbpt2000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:57|52.18 KB|Sent|Message for arunbpt2000@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2634|eCAS_MutualFunds@manipaltechnologies.com|arunbrahma5917@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:57|57.99 KB|Sent|Message for arunbrahma5917@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2635|eCAS_MutualFunds@manipaltechnologies.com|arunbraj01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:57|79.42 KB|Sent|Message for arunbraj01@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2636|eCAS_MutualFunds@manipaltechnologies.com|arunbramhadande1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:57|60.41 KB|Sent|Message for arunbramhadande1978@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2637|eCAS_MutualFunds@manipaltechnologies.com|arunbrave123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:57|62.59 KB|Sent|Message for arunbrave123@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2638|eCAS_MutualFunds@manipaltechnologies.com|arunbrave123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:57|67.23 KB|Sent|Message for arunbrave123@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2639|eCAS_MutualFunds@manipaltechnologies.com|arunbrij@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|72.96 KB|Sent|Message for arunbrij@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2640|eCAS_MutualFunds@manipaltechnologies.com|arunbritto65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|60.52 KB|Sent|Message for arunbritto65@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2641|eCAS_MutualFunds@manipaltechnologies.com|arunbros20@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|67.52 KB|Sent|Message for arunbros20@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +2642|eCAS_MutualFunds@manipaltechnologies.com|arunbs001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.11 KB|Sent|Message for arunbs001@yahoo.com accepted by 67.195.228.110:25 (mta7.am0.yahoodns.net) +2643|eCAS_MutualFunds@manipaltechnologies.com|arunbsa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|64.62 KB|Sent|Message for arunbsa@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2644|eCAS_MutualFunds@manipaltechnologies.com|arunbskr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:58|70.81 KB|Sent|Message for arunbskr@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2645|eCAS_MutualFunds@manipaltechnologies.com|arunbsnl00103137@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:59|60.71 KB|Sent|Message for arunbsnl00103137@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2646|eCAS_MutualFunds@manipaltechnologies.com|arunbst101@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:59|53.09 KB|Sent|Message for arunbst101@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2647|eCAS_MutualFunds@manipaltechnologies.com|arunbsv@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:59|57.93 KB|Sent|Message for arunbsv@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2648|eCAS_MutualFunds@manipaltechnologies.com|arunbte@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:59|97.42 KB|Sent|Message for arunbte@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2649|eCAS_MutualFunds@manipaltechnologies.com|arunbtmg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:06:59|58.55 KB|Sent|Message for arunbtmg@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2650|eCAS_MutualFunds@manipaltechnologies.com|arunbudagumpi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:00|60.36 KB|Sent|Message for arunbudagumpi@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2651|eCAS_MutualFunds@manipaltechnologies.com|arunbugade02@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:00|79.37 KB|Sent|Message for arunbugade02@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2652|eCAS_MutualFunds@manipaltechnologies.com|arunbunkar3333@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:00|50.3 KB|Sent|Message for arunbunkar3333@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2653|eCAS_MutualFunds@manipaltechnologies.com|arunburte@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:00|57.02 KB|Sent|Message for arunburte@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2654|eCAS_MutualFunds@manipaltechnologies.com|arunbusi@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:00|53.04 KB|HardFail|An error occurred while sending the message to 188.125.72.73:25 (mx-eu.mail.am0.yahoodns.net) +2654|eCAS_MutualFunds@manipaltechnologies.com|arunbusi@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:00|53.04 KB|HardFail|An error occurred while sending the message to 188.125.72.73:25 (mx-eu.mail.am0.yahoodns.net) +2654|eCAS_MutualFunds@manipaltechnologies.com|arunbusi@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:00|53.04 KB|HardFail|An error occurred while sending the message to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +2654|eCAS_MutualFunds@manipaltechnologies.com|arunbusi@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:00|53.04 KB|HardFail|An error occurred while sending the message to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +2654|eCAS_MutualFunds@manipaltechnologies.com|arunbusi@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:00|53.04 KB|HardFail|An error occurred while sending the message to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +2654|eCAS_MutualFunds@manipaltechnologies.com|arunbusi@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:00|53.04 KB|HardFail|Permanent SMTP delivery error when sending to 188.125.72.73:25 (mx-eu.mail.am0.yahoodns.net) +2655|eCAS_MutualFunds@manipaltechnologies.com|arunbxr6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:01|68.84 KB|Sent|Message for arunbxr6@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2656|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:01|53.44 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2657|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:01|57.32 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2658|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:01|54.05 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2659|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:01|53.32 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2660|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:02|54.01 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2661|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:02|54.03 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2662|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:02|53.41 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2663|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:02|54.01 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2664|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:02|54.2 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2665|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:02|56.43 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2666|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:03|53.32 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2667|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:03|51.06 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2668|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:03|54.34 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2669|eCAS_MutualFunds@manipaltechnologies.com|arunbyapari50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:03|53.88 KB|Sent|Message for arunbyapari50@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2670|eCAS_MutualFunds@manipaltechnologies.com|arunc0268@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:03|62.04 KB|Sent|Message for arunc0268@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2671|eCAS_MutualFunds@manipaltechnologies.com|arunc1513@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:03|49.43 KB|Sent|Message for arunc1513@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2672|eCAS_MutualFunds@manipaltechnologies.com|arunc1656503@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:04|62.09 KB|Sent|Message for arunc1656503@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2673|eCAS_MutualFunds@manipaltechnologies.com|arunc202@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:04|66.75 KB|Sent|Message for arunc202@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2674|eCAS_MutualFunds@manipaltechnologies.com|arunc33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:04|58.51 KB|Sent|Message for arunc33@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2675|eCAS_MutualFunds@manipaltechnologies.com|arunc876@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:04|61.4 KB|Sent|Message for arunc876@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2676|eCAS_MutualFunds@manipaltechnologies.com|aruncaepht@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:04|53.37 KB|Sent|Message for aruncaepht@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2677|eCAS_MutualFunds@manipaltechnologies.com|aruncameron100@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:05|67.9 KB|Sent|Message for aruncameron100@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2678|eCAS_MutualFunds@manipaltechnologies.com|aruncare2000@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:05|62.33 KB|Sent|Message for aruncare2000@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2679|eCAS_MutualFunds@manipaltechnologies.com|aruncbahrain@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:05|64.02 KB|Sent|Message for aruncbahrain@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2680|eCAS_MutualFunds@manipaltechnologies.com|aruncbcid@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:05|61.55 KB|Sent|Message for aruncbcid@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2681|eCAS_MutualFunds@manipaltechnologies.com|aruncdm92@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:05|67.16 KB|Sent|Message for aruncdm92@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2682|eCAS_MutualFunds@manipaltechnologies.com|aruncelly1951@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:06|56.33 KB|Sent|Message for aruncelly1951@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2683|eCAS_MutualFunds@manipaltechnologies.com|aruncelly1951@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:06|60.19 KB|Sent|Message for aruncelly1951@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2684|eCAS_MutualFunds@manipaltechnologies.com|aruncghosh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:06|77.5 KB|Sent|Message for aruncghosh@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2685|eCAS_MutualFunds@manipaltechnologies.com|arunch.151@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:06|52.5 KB|Sent|Message for arunch.151@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2686|eCAS_MutualFunds@manipaltechnologies.com|arunch.borah@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:06|51.96 KB|Sent|Message for arunch.borah@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2687|eCAS_MutualFunds@manipaltechnologies.com|arunch1971@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:06|64.2 KB|Sent|Message for arunch1971@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2688|eCAS_MutualFunds@manipaltechnologies.com|arunch1971@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:07|64.66 KB|Sent|Message for arunch1971@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2689|eCAS_MutualFunds@manipaltechnologies.com|arunch94@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:07|56.93 KB|Sent|Message for arunch94@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2690|eCAS_MutualFunds@manipaltechnologies.com|arunchabra379@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:07|51.26 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2691|eCAS_MutualFunds@manipaltechnologies.com|arunchaitanya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:07|55.02 KB|Sent|Message for arunchaitanya@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2692|eCAS_MutualFunds@manipaltechnologies.com|arunchaki2020@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:07|67.04 KB|Sent|Message for arunchaki2020@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2693|eCAS_MutualFunds@manipaltechnologies.com|arunchakraborti2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:08|68.16 KB|Sent|Message for arunchakraborti2017@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2694|eCAS_MutualFunds@manipaltechnologies.com|arunchakraborti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:08|71.78 KB|Sent|Message for arunchakraborti@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2695|eCAS_MutualFunds@manipaltechnologies.com|arunchakraborty06@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:08|69.88 KB|Sent|Message for arunchakraborty06@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2696|eCAS_MutualFunds@manipaltechnologies.com|arunchakraborty156@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:08|79.66 KB|Sent|Message for arunchakraborty156@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2697|eCAS_MutualFunds@manipaltechnologies.com|arunchakraborty156@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:08|56.99 KB|Sent|Message for arunchakraborty156@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2698|eCAS_MutualFunds@manipaltechnologies.com|arunchakraborty175@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|49.53 KB|Sent|Message for arunchakraborty175@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2699|eCAS_MutualFunds@manipaltechnologies.com|arunchakraborty1972@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|57.98 KB|Sent|Message for arunchakraborty1972@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2700|eCAS_MutualFunds@manipaltechnologies.com|arunchakraborty885@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|55.05 KB|Sent|Message for arunchakraborty885@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2701|eCAS_MutualFunds@manipaltechnologies.com|arunchakraborty98@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|70.03 KB|Sent|Message for arunchakraborty98@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +2702|eCAS_MutualFunds@manipaltechnologies.com|arunchamu_999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|76.24 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.228.110:25 (mta7.am0.yahoodns.net) +2703|eCAS_MutualFunds@manipaltechnologies.com|arunchanchal12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:09|69.72 KB|Sent|Message for arunchanchal12@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2704|eCAS_MutualFunds@manipaltechnologies.com|arunchand.s@sbi.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:10|65.07 KB|Sent|Message for arunchand.s@sbi.co.in accepted by 52.101.145.2:25 (sbi-co-in.mail.protection.outlook.com) +2705|eCAS_MutualFunds@manipaltechnologies.com|arunchand2745@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:10|55.25 KB|Sent|Message for arunchand2745@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2706|eCAS_MutualFunds@manipaltechnologies.com|arunchanda.slg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:10|57.17 KB|Sent|Message for arunchanda.slg@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2707|eCAS_MutualFunds@manipaltechnologies.com|arunchanda92@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:10|56.92 KB|Sent|Message for arunchanda92@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2708|eCAS_MutualFunds@manipaltechnologies.com|arunchandane68@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:10|62.2 KB|Sent|Message for arunchandane68@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2709|eCAS_MutualFunds@manipaltechnologies.com|arunchandel220@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:11|67.54 KB|Sent|Message for arunchandel220@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2710|eCAS_MutualFunds@manipaltechnologies.com|arunchandel59269@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:11|53.69 KB|Sent|Message for arunchandel59269@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2711|eCAS_MutualFunds@manipaltechnologies.com|arunchandel636@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:11|56.58 KB|Sent|Message for arunchandel636@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2712|eCAS_MutualFunds@manipaltechnologies.com|arunchandeliya929@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:11|56.57 KB|Sent|Message for arunchandeliya929@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2713|eCAS_MutualFunds@manipaltechnologies.com|arunchandgude@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:11|65.2 KB|Sent|Message for arunchandgude@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2714|eCAS_MutualFunds@manipaltechnologies.com|arunchandpara1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:12|91.8 KB|Sent|Message for arunchandpara1@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2715|eCAS_MutualFunds@manipaltechnologies.com|arunchandpc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:12|69.37 KB|Sent|Message for arunchandpc@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2716|eCAS_MutualFunds@manipaltechnologies.com|arunchandpush@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:12|55.82 KB|Sent|Message for arunchandpush@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2717|eCAS_MutualFunds@manipaltechnologies.com|arunchandra.srivastava50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:12|49.81 KB|Sent|Message for arunchandra.srivastava50@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2718|eCAS_MutualFunds@manipaltechnologies.com|arunchandra0097@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:12|60.01 KB|Sent|Message for arunchandra0097@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2719|eCAS_MutualFunds@manipaltechnologies.com|arunchandradas.bridge@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:13|70.84 KB|Sent|Message for arunchandradas.bridge@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2720|eCAS_MutualFunds@manipaltechnologies.com|arunchandradas49@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:13|65.26 KB|Sent|Message for arunchandradas49@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2721|eCAS_MutualFunds@manipaltechnologies.com|arunchandrahasa_1988@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:13|67.6 KB|Sent|Message for arunchandrahasa_1988@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +2722|eCAS_MutualFunds@manipaltechnologies.com|arunchandramangaraj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:13|52.26 KB|Sent|Message for arunchandramangaraj@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2723|eCAS_MutualFunds@manipaltechnologies.com|arunchandran.cp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:13|65.08 KB|Sent|Message for arunchandran.cp@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2724|eCAS_MutualFunds@manipaltechnologies.com|arunchandranowns@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:14|72.23 KB|Sent|Message for arunchandranowns@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2725|eCAS_MutualFunds@manipaltechnologies.com|arunchandrant@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:14|52.78 KB|Sent|Message for arunchandrant@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2726|eCAS_MutualFunds@manipaltechnologies.com|arunchandrapandey732@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:14|72.83 KB|Sent|Message for arunchandrapandey732@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2727|eCAS_MutualFunds@manipaltechnologies.com|arunchandrasaha452@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:14|68.68 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2728|eCAS_MutualFunds@manipaltechnologies.com|arunchandru05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:14|62.22 KB|Sent|Message for arunchandru05@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2729|eCAS_MutualFunds@manipaltechnologies.com|arunchangmai32@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:14|58.14 KB|Sent|Message for arunchangmai32@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2730|eCAS_MutualFunds@manipaltechnologies.com|arunchannagowda@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:15|60.89 KB|Sent|Message for arunchannagowda@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2731|eCAS_MutualFunds@manipaltechnologies.com|arunchanudhuri@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:15|59.49 KB|HardFail|Permanent SMTP delivery error when sending to 52.101.194.10:25 (hotmail-com.olc.protection.outlook.com) +2732|eCAS_MutualFunds@manipaltechnologies.com|aruncharaborty1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:15|55.64 KB|Sent|Message for aruncharaborty1@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2733|eCAS_MutualFunds@manipaltechnologies.com|aruncharaming31@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:15|49.25 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2734|eCAS_MutualFunds@manipaltechnologies.com|aruncharan@woodstock.ac.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:15|58.25 KB|Sent|Message for aruncharan@woodstock.ac.in accepted by 52.101.137.2:25 (woodstock-ac-in.mail.protection.outlook.com) +2735|eCAS_MutualFunds@manipaltechnologies.com|aruncharikh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:16|58.96 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2736|eCAS_MutualFunds@manipaltechnologies.com|aruncharry2004@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:16|51.02 KB|Sent|Message for aruncharry2004@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2737|eCAS_MutualFunds@manipaltechnologies.com|aruncharshan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:16|54.58 KB|Sent|Message for aruncharshan@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2738|eCAS_MutualFunds@manipaltechnologies.com|arunchary27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:16|60.69 KB|Sent|Message for arunchary27@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2739|eCAS_MutualFunds@manipaltechnologies.com|aruncharyilarpuarunchary@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:16|50.37 KB|Sent|Message for aruncharyilarpuarunchary@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2740|eCAS_MutualFunds@manipaltechnologies.com|arunchatrapati143@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:16|61.79 KB|Sent|Message for arunchatrapati143@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2741|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|60.99 KB|Sent|Message for arunchatterjee20@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2742|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee2607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|65.06 KB|Sent|Message for arunchatterjee2607@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +2743|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|58.6 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunchatterjee72@gmail.com to suppression list because delivery has failed 18 times. +2744|eCAS_MutualFunds@manipaltechnologies.com|arunchaturvedi251@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|51.07 KB|Sent|Message for arunchaturvedi251@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2745|eCAS_MutualFunds@manipaltechnologies.com|arunchatwani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:17|70.08 KB|Sent|Message for arunchatwani@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2746|eCAS_MutualFunds@manipaltechnologies.com|arunchaubegkp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:18|62.23 KB|Sent|Message for arunchaubegkp@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2747|eCAS_MutualFunds@manipaltechnologies.com|arunchaubey01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:18|52.04 KB|Sent|Message for arunchaubey01@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2748|eCAS_MutualFunds@manipaltechnologies.com|arunchaubey22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:18|54.66 KB|Sent|Message for arunchaubey22@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2749|eCAS_MutualFunds@manipaltechnologies.com|arunchaudary78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:18|67.11 KB|Sent|Message for arunchaudary78@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2750|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari0101@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:18|56.74 KB|Sent|Message for arunchaudhari0101@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2751|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|54.79 KB|Sent|Message for arunchaudhari1980@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta7.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +2752|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|77.27 KB|Sent|Message for arunchaudhari31@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +2753|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari32@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|50.15 KB|Sent|Message for arunchaudhari32@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2754|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari347@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|51.62 KB|Sent|Message for arunchaudhari347@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2755|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari69@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|57.34 KB|Sent|Message for arunchaudhari69@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2756|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari760@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:19|47.84 KB|Sent|Message for arunchaudhari760@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2757|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari832@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:20|59.97 KB|Sent|Message for arunchaudhari832@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2758|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari861@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:20|50.33 KB|Sent|Message for arunchaudhari861@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2759|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari977@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:20|51.29 KB|Sent|Message for arunchaudhari977@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2760|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary077up@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:20|51.51 KB|Sent|Message for arunchaudhary077up@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2761|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary56295@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:20|49.14 KB|Sent|Message for arunchaudhary56295@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2762|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary84.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:21|65.73 KB|Sent|Message for arunchaudhary84.ac@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2763|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary8644@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:21|71.74 KB|Sent|Message for arunchaudhary8644@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2764|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary971723@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:21|50.02 KB|Sent|Message for arunchaudhary971723@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2765|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary983598031@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:21|78.71 KB|Sent|Message for arunchaudhary983598031@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2766|eCAS_MutualFunds@manipaltechnologies.com|arunchaudharydtu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:22|60.2 KB|Sent|Message for arunchaudharydtu@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2767|eCAS_MutualFunds@manipaltechnologies.com|arunchaudharyldh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:25|54.5 KB|Sent|Message for arunchaudharyldh@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2768|eCAS_MutualFunds@manipaltechnologies.com|arunchauha081@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:27|55.74 KB|Sent|Message for arunchauha081@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2769|eCAS_MutualFunds@manipaltechnologies.com|arunchauhan2609@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:32|55.13 KB|Sent|Message for arunchauhan2609@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2770|eCAS_MutualFunds@manipaltechnologies.com|arunchauhan2609@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:33|60.57 KB|Sent|Message for arunchauhan2609@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2771|eCAS_MutualFunds@manipaltechnologies.com|arunchauhan36@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:33|66.1 KB|Sent|Message for arunchauhan36@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2772|eCAS_MutualFunds@manipaltechnologies.com|arunchauhan6287@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:34|64.1 KB|Sent|Message for arunchauhan6287@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2773|eCAS_MutualFunds@manipaltechnologies.com|arunchauhan8524@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:34|51.65 KB|Sent|Message for arunchauhan8524@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2774|eCAS_MutualFunds@manipaltechnologies.com|arunchauhannaik@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:35|56.83 KB|Sent|Message for arunchauhannaik@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2775|eCAS_MutualFunds@manipaltechnologies.com|arunchaurasia131013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:35|64.66 KB|Sent|Message for arunchaurasia131013@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2776|eCAS_MutualFunds@manipaltechnologies.com|arunchaurasia588@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:36|63.61 KB|Sent|Message for arunchaurasia588@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2777|eCAS_MutualFunds@manipaltechnologies.com|arunchaurasia588@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:36|60.43 KB|Sent|Message for arunchaurasia588@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2778|eCAS_MutualFunds@manipaltechnologies.com|arunchaurasiya88261@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:36|57.57 KB|Sent|Message for arunchaurasiya88261@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2779|eCAS_MutualFunds@manipaltechnologies.com|arunchaure79.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:37|55.1 KB|Sent|Message for arunchaure79.ac@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2780|eCAS_MutualFunds@manipaltechnologies.com|arunchavan2013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:37|57.67 KB|Sent|Message for arunchavan2013@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2781|eCAS_MutualFunds@manipaltechnologies.com|arunchavan610.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:38|56.77 KB|Sent|Message for arunchavan610.ac@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2782|eCAS_MutualFunds@manipaltechnologies.com|arunchavan7298@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:38|68.99 KB|Sent|Message for arunchavan7298@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2783|eCAS_MutualFunds@manipaltechnologies.com|arunchavan737@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:38|52.19 KB|Sent|Message for arunchavan737@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2784|eCAS_MutualFunds@manipaltechnologies.com|arunchavan82@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:39|54.36 KB|Sent|Message for arunchavan82@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2785|eCAS_MutualFunds@manipaltechnologies.com|arunchawla770@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:39|57.67 KB|Sent|Message for arunchawla770@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2786|eCAS_MutualFunds@manipaltechnologies.com|arunchboro98@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:39|48.54 KB|Sent|Message for arunchboro98@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2787|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:40|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2787|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:40|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2787|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:40|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2787|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:40|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2787|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:40|54.93 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2787|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:40|54.93 KB|Sent|Message for arunchenn@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2788|eCAS_MutualFunds@manipaltechnologies.com|aruncherukat3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:40|70.09 KB|Sent|Message for aruncherukat3@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2789|eCAS_MutualFunds@manipaltechnologies.com|arunchess@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:41|48.64 KB|Sent|Message for arunchess@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2790|eCAS_MutualFunds@manipaltechnologies.com|arunchetry05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:41|54.54 KB|Sent|Message for arunchetry05@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2791|eCAS_MutualFunds@manipaltechnologies.com|arunchettri.ksg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:41|64.97 KB|Sent|Message for arunchettri.ksg@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2792|eCAS_MutualFunds@manipaltechnologies.com|arunchevala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:42|58.13 KB|Sent|Message for arunchevala@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2793|eCAS_MutualFunds@manipaltechnologies.com|arunchhabra1981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:42|74.7 KB|Sent|Message for arunchhabra1981@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2794|eCAS_MutualFunds@manipaltechnologies.com|arunchhadva@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:42|55.31 KB|Sent|Message for arunchhadva@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2795|eCAS_MutualFunds@manipaltechnologies.com|arunchhatrapal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:43|80.22 KB|Sent|Message for arunchhatrapal@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2796|eCAS_MutualFunds@manipaltechnologies.com|arunchhatrapal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:43|54.66 KB|Sent|Message for arunchhatrapal@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2797|eCAS_MutualFunds@manipaltechnologies.com|arunchhetriarunchhetri181@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:43|67.35 KB|Sent|Message for arunchhetriarunchhetri181@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2798|eCAS_MutualFunds@manipaltechnologies.com|arunchhetry55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:44|58.13 KB|Sent|Message for arunchhetry55@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2799|eCAS_MutualFunds@manipaltechnologies.com|arunchhiller@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:44|55.79 KB|Sent|Message for arunchhiller@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2800|eCAS_MutualFunds@manipaltechnologies.com|arunchikhale1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:44|66.51 KB|Sent|Message for arunchikhale1@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2801|eCAS_MutualFunds@manipaltechnologies.com|arunchinchawale96@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:45|54.38 KB|Sent|Message for arunchinchawale96@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2802|eCAS_MutualFunds@manipaltechnologies.com|arunchintha04@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:45|61.93 KB|Sent|Message for arunchintha04@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2803|eCAS_MutualFunds@manipaltechnologies.com|arunchirakalil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:45|56.83 KB|Sent|Message for arunchirakalil@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2804|eCAS_MutualFunds@manipaltechnologies.com|arunchitra08@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|60.75 KB|Sent|Message for arunchitra08@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2805|eCAS_MutualFunds@manipaltechnologies.com|arunchnath123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|49.0 KB|Sent|Message for arunchnath123@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +2806|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:46|72.74 KB|Sent|Message for arunchockan@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +2807|eCAS_MutualFunds@manipaltechnologies.com|arunchodankar5566@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:47|58.45 KB|Sent|Message for arunchodankar5566@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2808|eCAS_MutualFunds@manipaltechnologies.com|arunchohadari444@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:07:47|48.99 KB|Sent|Message for arunchohadari444@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2809|eCAS_MutualFunds@manipaltechnologies.com|arunchandane68@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:17:43|62.2 KB|Sent|Message for arunchandane68@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2810|eCAS_MutualFunds@manipaltechnologies.com|arunchandel220@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:17:47|67.54 KB|Sent|Message for arunchandel220@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2811|eCAS_MutualFunds@manipaltechnologies.com|arunchandel59269@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:17:49|53.69 KB|Sent|Message for arunchandel59269@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2812|eCAS_MutualFunds@manipaltechnologies.com|arunchandel636@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:17:52|56.58 KB|Sent|Message for arunchandel636@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2813|eCAS_MutualFunds@manipaltechnologies.com|arunchandeliya929@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:17:54|56.57 KB|Sent|Message for arunchandeliya929@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2814|eCAS_MutualFunds@manipaltechnologies.com|arunchandgude@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:17:57|65.2 KB|Sent|Message for arunchandgude@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2815|eCAS_MutualFunds@manipaltechnologies.com|arunchandpara1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:00|91.8 KB|Sent|Message for arunchandpara1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2816|eCAS_MutualFunds@manipaltechnologies.com|arunchandpc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:04|69.37 KB|Sent|Message for arunchandpc@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2817|eCAS_MutualFunds@manipaltechnologies.com|arunchandpush@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:07|55.82 KB|Sent|Message for arunchandpush@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2818|eCAS_MutualFunds@manipaltechnologies.com|arunchandra.srivastava50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:10|49.81 KB|Sent|Message for arunchandra.srivastava50@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2819|eCAS_MutualFunds@manipaltechnologies.com|arunchandra0097@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:13|60.01 KB|Sent|Message for arunchandra0097@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2820|eCAS_MutualFunds@manipaltechnologies.com|arunchandradas.bridge@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:16|70.84 KB|Sent|Message for arunchandradas.bridge@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2821|eCAS_MutualFunds@manipaltechnologies.com|arunchandradas49@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:19|65.26 KB|Sent|Message for arunchandradas49@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2822|eCAS_MutualFunds@manipaltechnologies.com|arunchandrahasa_1988@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:23|67.6 KB|Sent|Message for arunchandrahasa_1988@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +2823|eCAS_MutualFunds@manipaltechnologies.com|arunchandramangaraj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:26|52.26 KB|Sent|Message for arunchandramangaraj@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2824|eCAS_MutualFunds@manipaltechnologies.com|arunchandran.cp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:29|65.08 KB|Sent|Message for arunchandran.cp@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2825|eCAS_MutualFunds@manipaltechnologies.com|arunchandranowns@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:32|72.23 KB|Sent|Message for arunchandranowns@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2826|eCAS_MutualFunds@manipaltechnologies.com|arunchandrant@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:35|52.78 KB|Sent|Message for arunchandrant@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2827|eCAS_MutualFunds@manipaltechnologies.com|arunchandrapandey732@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:38|72.83 KB|Sent|Message for arunchandrapandey732@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2828|eCAS_MutualFunds@manipaltechnologies.com|arunchandrasaha452@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:41|68.68 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com). Recipient added to suppression list (too many hard fails) +2829|eCAS_MutualFunds@manipaltechnologies.com|arunchandru05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:45|62.22 KB|Sent|Message for arunchandru05@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2830|eCAS_MutualFunds@manipaltechnologies.com|arunchangmai32@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:48|58.14 KB|Sent|Message for arunchangmai32@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2831|eCAS_MutualFunds@manipaltechnologies.com|arunchannagowda@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:51|60.89 KB|Sent|Message for arunchannagowda@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2832|eCAS_MutualFunds@manipaltechnologies.com|arunchanudhuri@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:54|59.49 KB|HardFail|Permanent SMTP delivery error when sending to 52.101.194.10:25 (hotmail-com.olc.protection.outlook.com). Recipient added to suppression list (too many hard fails) +2833|eCAS_MutualFunds@manipaltechnologies.com|aruncharaborty1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:18:57|55.64 KB|Sent|Message for aruncharaborty1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2834|eCAS_MutualFunds@manipaltechnologies.com|aruncharaming31@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:00|49.25 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com). Recipient added to suppression list (too many hard fails) +2835|eCAS_MutualFunds@manipaltechnologies.com|aruncharan@woodstock.ac.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:03|58.25 KB|Sent|Message for aruncharan@woodstock.ac.in accepted by 52.101.137.2:25 (woodstock-ac-in.mail.protection.outlook.com) +2836|eCAS_MutualFunds@manipaltechnologies.com|aruncharikh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:07|58.96 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com). Recipient added to suppression list (too many hard fails) +2837|eCAS_MutualFunds@manipaltechnologies.com|aruncharry2004@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:10|51.02 KB|Sent|Message for aruncharry2004@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2838|eCAS_MutualFunds@manipaltechnologies.com|aruncharshan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:13|54.58 KB|Sent|Message for aruncharshan@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2839|eCAS_MutualFunds@manipaltechnologies.com|arunchary27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:16|60.69 KB|Sent|Message for arunchary27@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2840|eCAS_MutualFunds@manipaltechnologies.com|aruncharyilarpuarunchary@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:19|50.37 KB|Sent|Message for aruncharyilarpuarunchary@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2841|eCAS_MutualFunds@manipaltechnologies.com|arunchatrapati143@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:22|61.79 KB|Sent|Message for arunchatrapati143@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2842|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:25|60.99 KB|Sent|Message for arunchatterjee20@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2843|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee2607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:28|65.06 KB|Sent|Message for arunchatterjee2607@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2844|eCAS_MutualFunds@manipaltechnologies.com|arunchatterjee72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:32|58.6 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunchatterjee72@gmail.com to suppression list because delivery has failed 18 times. +2845|eCAS_MutualFunds@manipaltechnologies.com|arunchaturvedi251@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:35|51.07 KB|Sent|Message for arunchaturvedi251@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2846|eCAS_MutualFunds@manipaltechnologies.com|arunchatwani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:38|70.08 KB|Sent|Message for arunchatwani@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2847|eCAS_MutualFunds@manipaltechnologies.com|arunchaubegkp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:41|62.23 KB|Sent|Message for arunchaubegkp@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2848|eCAS_MutualFunds@manipaltechnologies.com|arunchaubey01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:44|52.04 KB|Sent|Message for arunchaubey01@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2849|eCAS_MutualFunds@manipaltechnologies.com|arunchaubey22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:47|54.66 KB|Sent|Message for arunchaubey22@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2850|eCAS_MutualFunds@manipaltechnologies.com|arunchaudary78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:50|67.11 KB|Sent|Message for arunchaudary78@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2851|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari0101@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:54|56.74 KB|Sent|Message for arunchaudhari0101@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2852|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:19:57|54.79 KB|Sent|Message for arunchaudhari1980@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2853|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:00|77.27 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2853|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:00|77.27 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2853|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:00|77.27 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2853|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:00|77.27 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2853|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari31@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:00|77.27 KB|Sent|Message for arunchaudhari31@yahoo.com accepted by 67.195.228.111:25 (mta6.am0.yahoodns.net) +2854|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari32@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:03|50.15 KB|Sent|Message for arunchaudhari32@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2855|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari347@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:06|51.62 KB|Sent|Message for arunchaudhari347@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2856|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari69@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:09|57.34 KB|Sent|Message for arunchaudhari69@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2857|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari760@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:12|47.84 KB|Sent|Message for arunchaudhari760@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2858|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari832@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:16|59.97 KB|Sent|Message for arunchaudhari832@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2859|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari861@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:19|50.33 KB|Sent|Message for arunchaudhari861@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2860|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhari977@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:22|51.29 KB|Sent|Message for arunchaudhari977@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2861|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary077up@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:25|51.51 KB|Sent|Message for arunchaudhary077up@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2862|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary56295@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:28|49.14 KB|Sent|Message for arunchaudhary56295@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2863|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary84.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:31|65.73 KB|Sent|Message for arunchaudhary84.ac@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2864|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary8644@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:34|71.74 KB|Sent|Message for arunchaudhary8644@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2865|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary971723@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:38|50.02 KB|Sent|Message for arunchaudhary971723@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2866|eCAS_MutualFunds@manipaltechnologies.com|arunchaudhary983598031@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:41|78.71 KB|Sent|Message for arunchaudhary983598031@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2867|eCAS_MutualFunds@manipaltechnologies.com|arunchaudharydtu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:44|60.2 KB|Sent|Message for arunchaudharydtu@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2868|eCAS_MutualFunds@manipaltechnologies.com|arunchaudharyldh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:47|54.5 KB|Sent|Message for arunchaudharyldh@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2869|eCAS_MutualFunds@manipaltechnologies.com|arunchauha081@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:50|55.74 KB|Sent|Message for arunchauha081@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2870|eCAS_MutualFunds@manipaltechnologies.com|arunchauhan2609@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:53|55.13 KB|Sent|Message for arunchauhan2609@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2871|eCAS_MutualFunds@manipaltechnologies.com|arunchauhan2609@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:56|60.57 KB|Sent|Message for arunchauhan2609@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2872|eCAS_MutualFunds@manipaltechnologies.com|arunchauhan36@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:20:59|66.1 KB|Sent|Message for arunchauhan36@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2873|eCAS_MutualFunds@manipaltechnologies.com|arunchauhan6287@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:03|64.1 KB|Sent|Message for arunchauhan6287@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2874|eCAS_MutualFunds@manipaltechnologies.com|arunchauhan8524@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:06|51.65 KB|Sent|Message for arunchauhan8524@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2875|eCAS_MutualFunds@manipaltechnologies.com|arunchauhannaik@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:09|56.83 KB|Sent|Message for arunchauhannaik@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2876|eCAS_MutualFunds@manipaltechnologies.com|arunchaurasia131013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:12|64.66 KB|Sent|Message for arunchaurasia131013@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2877|eCAS_MutualFunds@manipaltechnologies.com|arunchaurasia588@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:15|63.61 KB|Sent|Message for arunchaurasia588@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2878|eCAS_MutualFunds@manipaltechnologies.com|arunchaurasia588@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:18|60.43 KB|Sent|Message for arunchaurasia588@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2879|eCAS_MutualFunds@manipaltechnologies.com|arunchaurasiya88261@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:21|57.57 KB|Sent|Message for arunchaurasiya88261@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2880|eCAS_MutualFunds@manipaltechnologies.com|arunchaure79.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:25|55.1 KB|Sent|Message for arunchaure79.ac@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2881|eCAS_MutualFunds@manipaltechnologies.com|arunchavan2013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:32|57.67 KB|Sent|Message for arunchavan2013@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2882|eCAS_MutualFunds@manipaltechnologies.com|arunchavan610.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:35|56.77 KB|Sent|Message for arunchavan610.ac@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2883|eCAS_MutualFunds@manipaltechnologies.com|arunchavan7298@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:38|68.99 KB|Sent|Message for arunchavan7298@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2884|eCAS_MutualFunds@manipaltechnologies.com|arunchavan737@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:41|52.19 KB|Sent|Message for arunchavan737@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2885|eCAS_MutualFunds@manipaltechnologies.com|arunchavan82@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:45|54.36 KB|Sent|Message for arunchavan82@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2886|eCAS_MutualFunds@manipaltechnologies.com|arunchawla770@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:48|57.67 KB|Sent|Message for arunchawla770@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2887|eCAS_MutualFunds@manipaltechnologies.com|arunchboro98@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:51|48.54 KB|Sent|Message for arunchboro98@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2888|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:54|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2888|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:54|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2888|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:54|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2888|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:54|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2888|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:54|54.93 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2888|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:54|54.93 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2888|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:54|54.93 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2888|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:54|54.93 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2888|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:54|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +2888|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:54|54.93 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2888|eCAS_MutualFunds@manipaltechnologies.com|arunchenn@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:54|54.93 KB|Sent|Message for arunchenn@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +2889|eCAS_MutualFunds@manipaltechnologies.com|aruncherukat3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:21:57|70.09 KB|Sent|Message for aruncherukat3@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2890|eCAS_MutualFunds@manipaltechnologies.com|arunchess@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:00|48.64 KB|Sent|Message for arunchess@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2891|eCAS_MutualFunds@manipaltechnologies.com|arunchetry05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:03|54.54 KB|Sent|Message for arunchetry05@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2892|eCAS_MutualFunds@manipaltechnologies.com|arunchettri.ksg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:07|64.97 KB|Sent|Message for arunchettri.ksg@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2893|eCAS_MutualFunds@manipaltechnologies.com|arunchevala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:10|58.13 KB|Sent|Message for arunchevala@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2894|eCAS_MutualFunds@manipaltechnologies.com|arunchhabra1981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:13|74.7 KB|Sent|Message for arunchhabra1981@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2895|eCAS_MutualFunds@manipaltechnologies.com|arunchhadva@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:16|55.31 KB|Sent|Message for arunchhadva@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2896|eCAS_MutualFunds@manipaltechnologies.com|arunchhatrapal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:19|80.22 KB|Sent|Message for arunchhatrapal@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2897|eCAS_MutualFunds@manipaltechnologies.com|arunchhatrapal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:22|54.66 KB|Sent|Message for arunchhatrapal@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2898|eCAS_MutualFunds@manipaltechnologies.com|arunchhetriarunchhetri181@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:25|67.35 KB|Sent|Message for arunchhetriarunchhetri181@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2899|eCAS_MutualFunds@manipaltechnologies.com|arunchhetry55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:29|58.13 KB|Sent|Message for arunchhetry55@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2900|eCAS_MutualFunds@manipaltechnologies.com|arunchhiller@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:32|55.79 KB|Sent|Message for arunchhiller@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2901|eCAS_MutualFunds@manipaltechnologies.com|arunchikhale1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:35|66.51 KB|Sent|Message for arunchikhale1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +2902|eCAS_MutualFunds@manipaltechnologies.com|arunchinchawale96@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:38|54.38 KB|Sent|Message for arunchinchawale96@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2903|eCAS_MutualFunds@manipaltechnologies.com|arunchintha04@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:41|61.93 KB|Sent|Message for arunchintha04@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2904|eCAS_MutualFunds@manipaltechnologies.com|arunchirakalil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:49|56.83 KB|Sent|Message for arunchirakalil@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2905|eCAS_MutualFunds@manipaltechnologies.com|arunchitra08@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:52|60.75 KB|Sent|Message for arunchitra08@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2906|eCAS_MutualFunds@manipaltechnologies.com|arunchnath123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:55|49.0 KB|Sent|Message for arunchnath123@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2907|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:59|72.74 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2907|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:59|72.74 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2907|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:59|72.74 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2907|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:59|72.74 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2907|eCAS_MutualFunds@manipaltechnologies.com|arunchockan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:22:59|72.74 KB|Sent|Message for arunchockan@yahoo.com accepted by 67.195.228.111:25 (mta6.am0.yahoodns.net) +2908|eCAS_MutualFunds@manipaltechnologies.com|arunchodankar5566@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:02|58.45 KB|Sent|Message for arunchodankar5566@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2909|eCAS_MutualFunds@manipaltechnologies.com|arunchohadari444@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:05|48.99 KB|Sent|Message for arunchohadari444@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2910|eCAS_MutualFunds@manipaltechnologies.com|arunchohan1454@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:08|60.68 KB|Sent|Message for arunchohan1454@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2911|eCAS_MutualFunds@manipaltechnologies.com|arunchomin623@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:11|63.16 KB|Sent|Message for arunchomin623@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2912|eCAS_MutualFunds@manipaltechnologies.com|arunchopra.1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:15|66.44 KB|Sent|Message for arunchopra.1967@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2913|eCAS_MutualFunds@manipaltechnologies.com|arunchoubey645@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:18|58.75 KB|Sent|Message for arunchoubey645@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2914|eCAS_MutualFunds@manipaltechnologies.com|arunchoubey67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:21|60.67 KB|Sent|Message for arunchoubey67@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2915|eCAS_MutualFunds@manipaltechnologies.com|arunchoubey89@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:24|57.33 KB|Sent|Message for arunchoubey89@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2916|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhari71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:27|51.03 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +2916|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhari71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:27|51.03 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2916|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhari71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:27|51.03 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2916|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhari71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:27|51.03 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +2916|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhari71@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:27|51.03 KB|Sent|Message for arunchoudhari71@yahoo.com accepted by 67.195.228.111:25 (mta6.am0.yahoodns.net) +2917|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhary.oct@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:31|59.7 KB|Sent|Message for arunchoudhary.oct@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2918|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhary1223@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:34|58.15 KB|Sent|Message for arunchoudhary1223@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2919|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhary2356@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:37|64.05 KB|Sent|Message for arunchoudhary2356@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2920|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhary29286@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:40|64.75 KB|Sent|Message for arunchoudhary29286@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2921|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhary65402@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:44|51.23 KB|Sent|Message for arunchoudhary65402@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2922|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhary802@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:47|67.85 KB|Sent|Message for arunchoudhary802@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2923|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhary87881@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:50|70.82 KB|Sent|Message for arunchoudhary87881@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2924|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhary@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:53|55.21 KB|Sent|Message for arunchoudhary@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2925|eCAS_MutualFunds@manipaltechnologies.com|arunchoudharyihmr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:56|52.05 KB|Sent|Message for arunchoudharyihmr@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2926|eCAS_MutualFunds@manipaltechnologies.com|arunchoudharyihmr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:23:59|66.62 KB|Sent|Message for arunchoudharyihmr@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2927|eCAS_MutualFunds@manipaltechnologies.com|arunchoudharynpr1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:03|79.57 KB|Sent|Message for arunchoudharynpr1@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2928|eCAS_MutualFunds@manipaltechnologies.com|arunchoudharyyyy08@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:06|57.58 KB|Sent|Message for arunchoudharyyyy08@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2929|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhury1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:09|64.4 KB|Sent|Message for arunchoudhury1967@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2930|eCAS_MutualFunds@manipaltechnologies.com|arunchoudhury8888@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:12|61.23 KB|Sent|Message for arunchoudhury8888@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2931|eCAS_MutualFunds@manipaltechnologies.com|arunchougule.108@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:15|51.2 KB|Sent|Message for arunchougule.108@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2932|eCAS_MutualFunds@manipaltechnologies.com|arunchouhan.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:19|69.13 KB|Sent|Message for arunchouhan.ac@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2933|eCAS_MutualFunds@manipaltechnologies.com|arunchouhan.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:22|72.21 KB|Sent|Message for arunchouhan.ac@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2934|eCAS_MutualFunds@manipaltechnologies.com|arunchouhan6988@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:25|60.17 KB|Sent|Message for arunchouhan6988@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2935|eCAS_MutualFunds@manipaltechnologies.com|arunchouksey383@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:28|58.75 KB|Sent|Message for arunchouksey383@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2936|eCAS_MutualFunds@manipaltechnologies.com|arunchourasia018@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:31|72.47 KB|Sent|Message for arunchourasia018@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2937|eCAS_MutualFunds@manipaltechnologies.com|arunchourasia1950@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:35|52.56 KB|Sent|Message for arunchourasia1950@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2938|eCAS_MutualFunds@manipaltechnologies.com|arunchourasia83@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:38|87.17 KB|Sent|Message for arunchourasia83@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2939|eCAS_MutualFunds@manipaltechnologies.com|arunchourasia83@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:41|72.95 KB|Sent|Message for arunchourasia83@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2940|eCAS_MutualFunds@manipaltechnologies.com|arunchourasiya35@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:44|67.3 KB|Sent|Message for arunchourasiya35@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2941|eCAS_MutualFunds@manipaltechnologies.com|arunchourey2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:47|67.17 KB|Sent|Message for arunchourey2@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2942|eCAS_MutualFunds@manipaltechnologies.com|arunchow63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:51|112.39 KB|Sent|Message for arunchow63@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2943|eCAS_MutualFunds@manipaltechnologies.com|arunchrist846@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:54|57.37 KB|Sent|Message for arunchrist846@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta6.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta6.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta6.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta5.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +2944|eCAS_MutualFunds@manipaltechnologies.com|arunchristom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:24:57|53.1 KB|Sent|Message for arunchristom@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +2945|eCAS_MutualFunds@manipaltechnologies.com|arunchroy17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:00|61.23 KB|Sent|Message for arunchroy17@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2946|eCAS_MutualFunds@manipaltechnologies.com|arunchsaha7450@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:03|56.96 KB|Sent|Message for arunchsaha7450@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2947|eCAS_MutualFunds@manipaltechnologies.com|arunchuck@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:07|79.68 KB|Sent|Message for arunchuck@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2948|eCAS_MutualFunds@manipaltechnologies.com|arunchute4968@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:10|49.23 KB|Sent|Message for arunchute4968@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2949|eCAS_MutualFunds@manipaltechnologies.com|arunchutel48@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:13|51.61 KB|Sent|Message for arunchutel48@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2950|eCAS_MutualFunds@manipaltechnologies.com|arunchy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:16|55.58 KB|Sent|Message for arunchy@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2951|eCAS_MutualFunds@manipaltechnologies.com|arunciment@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:19|60.58 KB|Sent|Message for arunciment@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2952|eCAS_MutualFunds@manipaltechnologies.com|arunciment@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:22|67.96 KB|Sent|Message for arunciment@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2953|eCAS_MutualFunds@manipaltechnologies.com|arunck22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:26|68.32 KB|Sent|Message for arunck22@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2954|eCAS_MutualFunds@manipaltechnologies.com|arunckumar1971@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:29|68.08 KB|Sent|Message for arunckumar1971@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2955|eCAS_MutualFunds@manipaltechnologies.com|arunclement200@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:32|53.04 KB|Sent|Message for arunclement200@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2956|eCAS_MutualFunds@manipaltechnologies.com|aruncloudy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:35|58.26 KB|Sent|Message for aruncloudy@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2957|eCAS_MutualFunds@manipaltechnologies.com|aruncm84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:38|65.32 KB|Sent|Message for aruncm84@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2958|eCAS_MutualFunds@manipaltechnologies.com|aruncmathew26@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:42|67.14 KB|Sent|Message for aruncmathew26@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2959|eCAS_MutualFunds@manipaltechnologies.com|aruncn999@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:45|55.94 KB|Sent|Message for aruncn999@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2960|eCAS_MutualFunds@manipaltechnologies.com|aruncoj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:48|78.29 KB|Sent|Message for aruncoj@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +2961|eCAS_MutualFunds@manipaltechnologies.com|aruncom@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:51|58.21 KB|Sent|Message for aruncom@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +2962|eCAS_MutualFunds@manipaltechnologies.com|aruncommunication591@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:54|49.19 KB|HardFail|Permanent SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2963|eCAS_MutualFunds@manipaltechnologies.com|aruncool2004@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:25:57|96.61 KB|Sent|Message for aruncool2004@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2964|eCAS_MutualFunds@manipaltechnologies.com|aruncool206@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:01|54.87 KB|Sent|Message for aruncool206@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2965|eCAS_MutualFunds@manipaltechnologies.com|aruncooln@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:04|71.76 KB|Sent|Message for aruncooln@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2966|eCAS_MutualFunds@manipaltechnologies.com|aruncozy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:07|57.46 KB|Sent|Message for aruncozy@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2967|eCAS_MutualFunds@manipaltechnologies.com|aruncozy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:10|51.44 KB|Sent|Message for aruncozy@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2968|eCAS_MutualFunds@manipaltechnologies.com|aruncp006@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:13|56.45 KB|Sent|Message for aruncp006@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2969|eCAS_MutualFunds@manipaltechnologies.com|aruncp2815@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:18|54.78 KB|Sent|Message for aruncp2815@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2970|eCAS_MutualFunds@manipaltechnologies.com|aruncpatel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:22|75.37 KB|Sent|Message for aruncpatel@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2971|eCAS_MutualFunds@manipaltechnologies.com|aruncpcri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:26|72.13 KB|Sent|Message for aruncpcri@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2972|eCAS_MutualFunds@manipaltechnologies.com|aruncraneservice@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:27|68.77 KB|Sent|Message for aruncraneservice@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2973|eCAS_MutualFunds@manipaltechnologies.com|aruncrasta2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:29|64.52 KB|Sent|Message for aruncrasta2017@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2974|eCAS_MutualFunds@manipaltechnologies.com|aruncrazyguy1986@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:30|58.42 KB|Sent|Message for aruncrazyguy1986@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2975|eCAS_MutualFunds@manipaltechnologies.com|aruncrcc1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:31|54.07 KB|Sent|Message for aruncrcc1@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2976|eCAS_MutualFunds@manipaltechnologies.com|aruncrown@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:32|69.85 KB|Sent|Message for aruncrown@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2977|eCAS_MutualFunds@manipaltechnologies.com|aruncru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:32|73.57 KB|Sent|Message for aruncru@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2978|eCAS_MutualFunds@manipaltechnologies.com|aruncs777@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:33|51.01 KB|Sent|Message for aruncs777@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2979|eCAS_MutualFunds@manipaltechnologies.com|aruncseverma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:33|54.32 KB|Sent|Message for aruncseverma@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2980|eCAS_MutualFunds@manipaltechnologies.com|aruncti27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:33|57.4 KB|Sent|Message for aruncti27@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2981|eCAS_MutualFunds@manipaltechnologies.com|aruncute1979@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|64.78 KB|Sent|Message for aruncute1979@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2982|eCAS_MutualFunds@manipaltechnologies.com|aruncvkkd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|55.86 KB|Sent|Message for aruncvkkd@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +2983|eCAS_MutualFunds@manipaltechnologies.com|aruncy2k@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:34|81.71 KB|Sent|Message for aruncy2k@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +2984|eCAS_MutualFunds@manipaltechnologies.com|aruncyto@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|77.53 KB|Sent|Message for aruncyto@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|No SMTP servers were available for ententotech.com. No hosts to try. +2985|eCAS_MutualFunds@manipaltechnologies.com|arund.kumar@ententotech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|54.56 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arund.kumar@ententotech.com to suppression list because delivery has failed 18 times. +2986|eCAS_MutualFunds@manipaltechnologies.com|arund1000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:35|62.88 KB|Sent|Message for arund1000@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +2987|eCAS_MutualFunds@manipaltechnologies.com|arund12@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|54.38 KB|Sent|Message for arund12@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +2988|eCAS_MutualFunds@manipaltechnologies.com|arund1334@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:36|50.93 KB|Sent|Message for arund1334@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2989|eCAS_MutualFunds@manipaltechnologies.com|arund1720@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:37|66.26 KB|Sent|Message for arund1720@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2990|eCAS_MutualFunds@manipaltechnologies.com|arund334@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:37|63.28 KB|Sent|Message for arund334@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2991|eCAS_MutualFunds@manipaltechnologies.com|arund4chira@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:37|57.97 KB|Sent|Message for arund4chira@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2992|eCAS_MutualFunds@manipaltechnologies.com|arund5564@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:38|57.76 KB|Sent|Message for arund5564@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2993|eCAS_MutualFunds@manipaltechnologies.com|arund7638@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:38|75.2 KB|Sent|Message for arund7638@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2994|eCAS_MutualFunds@manipaltechnologies.com|arund8974@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:38|67.09 KB|Sent|Message for arund8974@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2995|eCAS_MutualFunds@manipaltechnologies.com|arund9656@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:39|71.43 KB|Sent|Message for arund9656@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2996|eCAS_MutualFunds@manipaltechnologies.com|arund9656@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:39|65.16 KB|Sent|Message for arund9656@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2997|eCAS_MutualFunds@manipaltechnologies.com|arunda21devi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:39|49.64 KB|Sent|Message for arunda21devi@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2998|eCAS_MutualFunds@manipaltechnologies.com|arundabre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:40|50.1 KB|Sent|Message for arundabre@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +2999|eCAS_MutualFunds@manipaltechnologies.com|arundadashah@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:40|55.81 KB|Sent|Message for arundadashah@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3000|eCAS_MutualFunds@manipaltechnologies.com|arundadhich10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:41|56.17 KB|Sent|Message for arundadhich10@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3001|eCAS_MutualFunds@manipaltechnologies.com|arundadvocate@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:41|71.9 KB|Sent|Message for arundadvocate@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3002|eCAS_MutualFunds@manipaltechnologies.com|arundadwal981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:41|52.46 KB|Sent|Message for arundadwal981@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3003|eCAS_MutualFunds@manipaltechnologies.com|arundadwal@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|59.53 KB|Sent|Message for arundadwal@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +3004|eCAS_MutualFunds@manipaltechnologies.com|arundahayat7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|56.22 KB|Sent|Message for arundahayat7@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3005|eCAS_MutualFunds@manipaltechnologies.com|arundaine96@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:42|55.65 KB|Sent|Message for arundaine96@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3006|eCAS_MutualFunds@manipaltechnologies.com|arundalal88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:43|61.82 KB|Sent|Message for arundalal88@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3007|eCAS_MutualFunds@manipaltechnologies.com|arundalvi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:43|62.76 KB|Sent|Message for arundalvi@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3008|eCAS_MutualFunds@manipaltechnologies.com|arundamodar@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:43|86.76 KB|Sent|Message for arundamodar@hotmail.com accepted by 52.101.194.10:25 (hotmail-com.olc.protection.outlook.com) +3009|eCAS_MutualFunds@manipaltechnologies.com|arundana7i@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:44|57.43 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3010|eCAS_MutualFunds@manipaltechnologies.com|arundanakodi890@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:44|65.4 KB|Sent|Message for arundanakodi890@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3011|eCAS_MutualFunds@manipaltechnologies.com|arundandekar144@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:45|62.42 KB|Sent|Message for arundandekar144@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3012|eCAS_MutualFunds@manipaltechnologies.com|arundanger46@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:45|50.14 KB|Sent|Message for arundanger46@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3013|eCAS_MutualFunds@manipaltechnologies.com|arundarekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:45|55.78 KB|Sent|Message for arundarekar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3014|eCAS_MutualFunds@manipaltechnologies.com|arundarling334@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:46|50.96 KB|Sent|Message for arundarling334@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3015|eCAS_MutualFunds@manipaltechnologies.com|arundas.das6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:46|68.28 KB|Sent|Message for arundas.das6@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3016|eCAS_MutualFunds@manipaltechnologies.com|arundas.kakoli@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:46|61.37 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3017|eCAS_MutualFunds@manipaltechnologies.com|arundas.kakoli@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:47|61.21 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com). Recipient added to suppression list (too many hard fails) +3018|eCAS_MutualFunds@manipaltechnologies.com|arundas.nids@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:47|67.75 KB|Sent|Message for arundas.nids@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3019|eCAS_MutualFunds@manipaltechnologies.com|arundas.vatakara@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:49|51.93 KB|Sent|Message for arundas.vatakara@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3020|eCAS_MutualFunds@manipaltechnologies.com|arundas00674@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:50|56.97 KB|Sent|Message for arundas00674@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3021|eCAS_MutualFunds@manipaltechnologies.com|arundas0293@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:51|57.92 KB|Sent|Message for arundas0293@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3022|eCAS_MutualFunds@manipaltechnologies.com|arundas06@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:53|67.38 KB|Sent|Message for arundas06@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3023|eCAS_MutualFunds@manipaltechnologies.com|arundas102024@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:54|58.21 KB|Sent|Message for arundas102024@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3024|eCAS_MutualFunds@manipaltechnologies.com|arundas103163@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:55|51.4 KB|Sent|Message for arundas103163@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3025|eCAS_MutualFunds@manipaltechnologies.com|arundas11@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:56|71.72 KB|Sent|Message for arundas11@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3026|eCAS_MutualFunds@manipaltechnologies.com|arundas12333@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:58|51.65 KB|Sent|Message for arundas12333@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3027|eCAS_MutualFunds@manipaltechnologies.com|arundas12672@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:26:59|58.57 KB|Sent|Message for arundas12672@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3028|eCAS_MutualFunds@manipaltechnologies.com|arundas1281982@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:00|49.1 KB|Sent|Message for arundas1281982@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3029|eCAS_MutualFunds@manipaltechnologies.com|arundas1370@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:02|66.93 KB|Sent|Message for arundas1370@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3030|eCAS_MutualFunds@manipaltechnologies.com|arundas1732757@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:03|56.58 KB|Sent|Message for arundas1732757@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3031|eCAS_MutualFunds@manipaltechnologies.com|arundas1800@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:04|48.69 KB|Sent|Message for arundas1800@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3032|eCAS_MutualFunds@manipaltechnologies.com|arundas1977@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:05|61.85 KB|Sent|Message for arundas1977@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3033|eCAS_MutualFunds@manipaltechnologies.com|arundas2006@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:07|66.66 KB|Sent|Message for arundas2006@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3034|eCAS_MutualFunds@manipaltechnologies.com|arundas2022@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:08|60.63 KB|Sent|Message for arundas2022@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3035|eCAS_MutualFunds@manipaltechnologies.com|arundas2271985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:09|48.17 KB|Sent|Message for arundas2271985@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3036|eCAS_MutualFunds@manipaltechnologies.com|arundas2271985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:10|67.06 KB|Sent|Message for arundas2271985@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3037|eCAS_MutualFunds@manipaltechnologies.com|arundas2303@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:11|56.68 KB|Sent|Message for arundas2303@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3038|eCAS_MutualFunds@manipaltechnologies.com|arundas24515@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:13|62.09 KB|Sent|Message for arundas24515@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3039|eCAS_MutualFunds@manipaltechnologies.com|arundas411979@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:14|73.28 KB|Sent|Message for arundas411979@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3040|eCAS_MutualFunds@manipaltechnologies.com|arundas431@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:15|60.31 KB|Sent|Message for arundas431@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3041|eCAS_MutualFunds@manipaltechnologies.com|arundas4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:16|67.4 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arundas4@gmail.com to suppression list because delivery has failed 18 times. +3042|eCAS_MutualFunds@manipaltechnologies.com|arundas633@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:17|80.99 KB|Sent|Message for arundas633@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3043|eCAS_MutualFunds@manipaltechnologies.com|arundas6619@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:18|69.18 KB|Sent|Message for arundas6619@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3044|eCAS_MutualFunds@manipaltechnologies.com|arundas6619@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:20|56.41 KB|Sent|Message for arundas6619@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3045|eCAS_MutualFunds@manipaltechnologies.com|arundas7278@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:21|52.85 KB|Sent|Message for arundas7278@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3046|eCAS_MutualFunds@manipaltechnologies.com|arundas7400@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:22|62.53 KB|Sent|Message for arundas7400@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3047|eCAS_MutualFunds@manipaltechnologies.com|arundas8319@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:23|61.65 KB|Sent|Message for arundas8319@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3048|eCAS_MutualFunds@manipaltechnologies.com|arundas8465@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:24|59.04 KB|Sent|Message for arundas8465@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3049|eCAS_MutualFunds@manipaltechnologies.com|arundas9474577706@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:26|67.37 KB|Sent|Message for arundas9474577706@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3050|eCAS_MutualFunds@manipaltechnologies.com|arundas969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:27|54.32 KB|Sent|Message for arundas969@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3051|eCAS_MutualFunds@manipaltechnologies.com|arundas9932891467@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:28|51.62 KB|Sent|Message for arundas9932891467@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3052|eCAS_MutualFunds@manipaltechnologies.com|arundaschoudhury@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:29|58.14 KB|Sent|Message for arundaschoudhury@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3053|eCAS_MutualFunds@manipaltechnologies.com|arundasdmk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:31|67.97 KB|Sent|Message for arundasdmk@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3054|eCAS_MutualFunds@manipaltechnologies.com|arundasepm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:32|66.02 KB|Sent|Message for arundasepm@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3055|eCAS_MutualFunds@manipaltechnologies.com|arundasgupta2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:33|56.75 KB|Sent|Message for arundasgupta2@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3056|eCAS_MutualFunds@manipaltechnologies.com|arundash030@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:34|75.85 KB|Sent|Message for arundash030@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3057|eCAS_MutualFunds@manipaltechnologies.com|arundash500@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:35|59.99 KB|Sent|Message for arundash500@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3058|eCAS_MutualFunds@manipaltechnologies.com|arundashighcourt@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:36|56.1 KB|Sent|Message for arundashighcourt@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3059|eCAS_MutualFunds@manipaltechnologies.com|arundashing368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:38|64.6 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arundashing368@gmail.com to suppression list because delivery has failed 18 times. +3060|eCAS_MutualFunds@manipaltechnologies.com|arundaskr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:39|56.93 KB|Sent|Message for arundaskr@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3061|eCAS_MutualFunds@manipaltechnologies.com|arundasmili3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:40|62.22 KB|Sent|Message for arundasmili3@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3062|eCAS_MutualFunds@manipaltechnologies.com|arundasmuna@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:41|52.17 KB|Sent|Message for arundasmuna@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3063|eCAS_MutualFunds@manipaltechnologies.com|arundasps1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:42|69.41 KB|Sent|Message for arundasps1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3064|eCAS_MutualFunds@manipaltechnologies.com|arundaspzr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:44|59.99 KB|Sent|Message for arundaspzr@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3065|eCAS_MutualFunds@manipaltechnologies.com|arundasslj12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:45|73.13 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arundasslj12@gmail.com to suppression list because delivery has failed 18 times. +3066|eCAS_MutualFunds@manipaltechnologies.com|arundastenohari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:46|62.28 KB|Sent|Message for arundastenohari@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3067|eCAS_MutualFunds@manipaltechnologies.com|arundath@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:47|59.26 KB|Sent|Message for arundath@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3068|eCAS_MutualFunds@manipaltechnologies.com|arundathi.abyshekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:48|68.79 KB|Sent|Message for arundathi.abyshekar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3069|eCAS_MutualFunds@manipaltechnologies.com|arundathi.bandagadee@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:50|61.68 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3070|eCAS_MutualFunds@manipaltechnologies.com|arundathi.lalgonder82@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:51|59.71 KB|Sent|Message for arundathi.lalgonder82@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3071|eCAS_MutualFunds@manipaltechnologies.com|arundathi.ravi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:52|60.82 KB|Sent|Message for arundathi.ravi@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3072|eCAS_MutualFunds@manipaltechnologies.com|arundathi123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:53|52.04 KB|Sent|Message for arundathi123@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3073|eCAS_MutualFunds@manipaltechnologies.com|arundathi_n@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:54|59.83 KB|Sent|Message for arundathi_n@hotmail.com accepted by 52.101.194.10:25 (hotmail-com.olc.protection.outlook.com) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3074|eCAS_MutualFunds@manipaltechnologies.com|arundathib@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:55|57.5 KB|Sent|Message for arundathib@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +3075|eCAS_MutualFunds@manipaltechnologies.com|arundathik70@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:57|57.76 KB|Sent|Message for arundathik70@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3076|eCAS_MutualFunds@manipaltechnologies.com|arundathikatangoor@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:58|91.7 KB|Sent|Message for arundathikatangoor@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3077|eCAS_MutualFunds@manipaltechnologies.com|arundathy.pg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:27:59|54.58 KB|Sent|Message for arundathy.pg@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3078|eCAS_MutualFunds@manipaltechnologies.com|arundati99@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:00|59.38 KB|Sent|Message for arundati99@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3079|eCAS_MutualFunds@manipaltechnologies.com|arundati@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:01|56.62 KB|Sent|Message for arundati@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3080|eCAS_MutualFunds@manipaltechnologies.com|arundatib@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:03|83.51 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3080|eCAS_MutualFunds@manipaltechnologies.com|arundatib@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:03|83.51 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3080|eCAS_MutualFunds@manipaltechnologies.com|arundatib@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:03|83.51 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3080|eCAS_MutualFunds@manipaltechnologies.com|arundatib@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:03|83.51 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3080|eCAS_MutualFunds@manipaltechnologies.com|arundatib@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:03|83.51 KB|Sent|Message for arundatib@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3081|eCAS_MutualFunds@manipaltechnologies.com|arundatij60@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:04|55.64 KB|Sent|Message for arundatij60@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3082|eCAS_MutualFunds@manipaltechnologies.com|arundatijaluka@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:05|57.7 KB|Sent|Message for arundatijaluka@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3083|eCAS_MutualFunds@manipaltechnologies.com|arundatta16@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:06|73.71 KB|Sent|Message for arundatta16@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3084|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:07|63.46 KB|Sent|Message for arundatta2000@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3085|eCAS_MutualFunds@manipaltechnologies.com|arundatta2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:08|55.31 KB|Sent|Message for arundatta2000@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +3086|eCAS_MutualFunds@manipaltechnologies.com|arundatta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:10|52.11 KB|Sent|Message for arundatta@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3087|eCAS_MutualFunds@manipaltechnologies.com|arundave786@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:11|51.19 KB|Sent|Message for arundave786@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3088|eCAS_MutualFunds@manipaltechnologies.com|arundavid@vsnl.net|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:12|51.79 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.175.26:25 (aspmx.l.google.com) +3089|eCAS_MutualFunds@manipaltechnologies.com|arundavid@vsnl.net|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:13|54.33 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.175.26:25 (aspmx.l.google.com). Recipient added to suppression list (too many hard fails) +3090|eCAS_MutualFunds@manipaltechnologies.com|arundawar0@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:14|62.86 KB|Sent|Message for arundawar0@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3091|eCAS_MutualFunds@manipaltechnologies.com|arundaware71@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:16|57.37 KB|Sent|Message for arundaware71@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3092|eCAS_MutualFunds@manipaltechnologies.com|arundayal11@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:17|51.25 KB|Sent|Message for arundayal11@yahoo.com accepted by 67.195.228.94:25 (mta7.am0.yahoodns.net) +3093|eCAS_MutualFunds@manipaltechnologies.com|arundbhat69@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:18|69.15 KB|Sent|Message for arundbhat69@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3094|eCAS_MutualFunds@manipaltechnologies.com|arundbhimani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:19|58.32 KB|Sent|Message for arundbhimani@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3095|eCAS_MutualFunds@manipaltechnologies.com|arundcz823@outlook.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:20|52.9 KB|Sent|Message for arundcz823@outlook.com accepted by 52.101.73.25:25 (outlook-com.olc.protection.outlook.com) +3096|eCAS_MutualFunds@manipaltechnologies.com|arundd2016@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:22|69.76 KB|Sent|Message for arundd2016@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3097|eCAS_MutualFunds@manipaltechnologies.com|arundd20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:23|47.51 KB|Sent|Message for arundd20@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3098|eCAS_MutualFunds@manipaltechnologies.com|arunddhati@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:24|59.35 KB|Sent|Message for arunddhati@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3099|eCAS_MutualFunds@manipaltechnologies.com|arunde81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:25|58.03 KB|Sent|Message for arunde81@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3100|eCAS_MutualFunds@manipaltechnologies.com|arundeb593@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:26|84.38 KB|Sent|Message for arundeb593@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3101|eCAS_MutualFunds@manipaltechnologies.com|arundeb94309@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:27|52.72 KB|Sent|Message for arundeb94309@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3102|eCAS_MutualFunds@manipaltechnologies.com|arundebnath21@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:29|79.06 KB|Sent|Message for arundebnath21@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3103|eCAS_MutualFunds@manipaltechnologies.com|arundec77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:30|49.38 KB|Sent|Message for arundec77@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3104|eCAS_MutualFunds@manipaltechnologies.com|arundeep84@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:31|56.39 KB|Sent|Message for arundeep84@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3105|eCAS_MutualFunds@manipaltechnologies.com|arundeepa259@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:32|50.08 KB|Sent|Message for arundeepa259@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3106|eCAS_MutualFunds@manipaltechnologies.com|arundeepranjan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:33|54.98 KB|Sent|Message for arundeepranjan@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3107|eCAS_MutualFunds@manipaltechnologies.com|arundeepsharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:35|69.34 KB|Sent|Message for arundeepsharma@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3108|eCAS_MutualFunds@manipaltechnologies.com|arundeka075@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:36|56.8 KB|Sent|Message for arundeka075@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3109|eCAS_MutualFunds@manipaltechnologies.com|arundeka1965pan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:37|60.0 KB|Sent|Message for arundeka1965pan@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3110|eCAS_MutualFunds@manipaltechnologies.com|arundeka2000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:38|61.4 KB|Sent|Message for arundeka2000@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3111|eCAS_MutualFunds@manipaltechnologies.com|arundekaromkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:39|60.18 KB|Sent|Message for arundekaromkar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3112|eCAS_MutualFunds@manipaltechnologies.com|arundekatey@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:40|63.32 KB|Sent|Message for arundekatey@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3113|eCAS_MutualFunds@manipaltechnologies.com|arundelhi1981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:42|58.38 KB|Sent|Message for arundelhi1981@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3114|eCAS_MutualFunds@manipaltechnologies.com|arundelux03@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:43|52.54 KB|Sent|Message for arundelux03@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3115|eCAS_MutualFunds@manipaltechnologies.com|arundeoghar1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:44|56.44 KB|Sent|Message for arundeoghar1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3116|eCAS_MutualFunds@manipaltechnologies.com|arundeoghar1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:45|56.54 KB|Sent|Message for arundeoghar1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3117|eCAS_MutualFunds@manipaltechnologies.com|arundeoghar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:46|52.38 KB|Sent|Message for arundeoghar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3118|eCAS_MutualFunds@manipaltechnologies.com|arundeore5858@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:48|67.06 KB|Sent|Message for arundeore5858@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3119|eCAS_MutualFunds@manipaltechnologies.com|arundeosharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:49|65.98 KB|Sent|Message for arundeosharma@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3120|eCAS_MutualFunds@manipaltechnologies.com|arundesai0808@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:50|59.65 KB|Sent|Message for arundesai0808@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3121|eCAS_MutualFunds@manipaltechnologies.com|arundesai1820@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:51|50.92 KB|Sent|Message for arundesai1820@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3122|eCAS_MutualFunds@manipaltechnologies.com|arundesale92@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:52|65.89 KB|Sent|Message for arundesale92@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3123|eCAS_MutualFunds@manipaltechnologies.com|arundesh73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:53|75.76 KB|Sent|Message for arundesh73@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3124|eCAS_MutualFunds@manipaltechnologies.com|arundesh73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:55|49.45 KB|Sent|Message for arundesh73@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3125|eCAS_MutualFunds@manipaltechnologies.com|arundeshmukh14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:56|60.08 KB|Sent|Message for arundeshmukh14@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3126|eCAS_MutualFunds@manipaltechnologies.com|arundeshmukh2011@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:57|65.17 KB|Sent|Message for arundeshmukh2011@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3127|eCAS_MutualFunds@manipaltechnologies.com|arundeshmukh2171957@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:58|60.32 KB|Sent|Message for arundeshmukh2171957@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3128|eCAS_MutualFunds@manipaltechnologies.com|arundeshmukh999@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:28:59|51.41 KB|Sent|Message for arundeshmukh999@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3129|eCAS_MutualFunds@manipaltechnologies.com|arundeshpande0657@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:01|67.64 KB|Sent|Message for arundeshpande0657@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3130|eCAS_MutualFunds@manipaltechnologies.com|arundeshpande0657@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:02|55.73 KB|Sent|Message for arundeshpande0657@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3131|eCAS_MutualFunds@manipaltechnologies.com|arundeshpande94@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:03|60.93 KB|Sent|Message for arundeshpande94@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3132|eCAS_MutualFunds@manipaltechnologies.com|arundesign2k10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:04|54.29 KB|Sent|Message for arundesign2k10@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3133|eCAS_MutualFunds@manipaltechnologies.com|arundeswal1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:06|88.25 KB|Sent|Message for arundeswal1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3134|eCAS_MutualFunds@manipaltechnologies.com|arundethe0408@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:07|65.32 KB|Sent|Message for arundethe0408@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3135|eCAS_MutualFunds@manipaltechnologies.com|arundeuri30982@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:08|49.08 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3136|eCAS_MutualFunds@manipaltechnologies.com|arundev22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:09|69.38 KB|Sent|Message for arundev22@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3137|eCAS_MutualFunds@manipaltechnologies.com|arundev42r@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:10|51.02 KB|Sent|Message for arundev42r@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3138|eCAS_MutualFunds@manipaltechnologies.com|arundev546@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:11|62.08 KB|Sent|Message for arundev546@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3139|eCAS_MutualFunds@manipaltechnologies.com|arundev88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:13|57.23 KB|Sent|Message for arundev88@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3140|eCAS_MutualFunds@manipaltechnologies.com|arundevagg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:14|53.58 KB|Sent|Message for arundevagg@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3141|eCAS_MutualFunds@manipaltechnologies.com|arundevali11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:15|67.95 KB|Sent|Message for arundevali11@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3142|eCAS_MutualFunds@manipaltechnologies.com|arundevan7812@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:16|48.8 KB|Sent|Message for arundevan7812@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3143|eCAS_MutualFunds@manipaltechnologies.com|arundevmahana0012@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:17|52.93 KB|Sent|Message for arundevmahana0012@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3144|eCAS_MutualFunds@manipaltechnologies.com|arundevnagraj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:19|90.63 KB|Sent|Message for arundevnagraj@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3145|eCAS_MutualFunds@manipaltechnologies.com|arundevnath489@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:20|58.22 KB|Sent|Message for arundevnath489@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3146|eCAS_MutualFunds@manipaltechnologies.com|arundevpandey567@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:21|55.01 KB|Sent|Message for arundevpandey567@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3147|eCAS_MutualFunds@manipaltechnologies.com|arundevthanal143@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:22|59.81 KB|Sent|Message for arundevthanal143@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3148|eCAS_MutualFunds@manipaltechnologies.com|arundewan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:23|56.81 KB|Sent|Message for arundewan@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3149|eCAS_MutualFunds@manipaltechnologies.com|arundewan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:24|63.18 KB|Sent|Message for arundewan@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3150|eCAS_MutualFunds@manipaltechnologies.com|arundey088@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:26|74.62 KB|Sent|Message for arundey088@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3151|eCAS_MutualFunds@manipaltechnologies.com|arundey1910@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|10:29:27|116.36 KB|Sent|Message for arundey1910@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3152|eCAS_MutualFunds@manipaltechnologies.com|arundey220@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:17|61.22 KB|Sent|Message for arundey220@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3153|eCAS_MutualFunds@manipaltechnologies.com|arundey57764@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:18|69.92 KB|Sent|Message for arundey57764@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3154|eCAS_MutualFunds@manipaltechnologies.com|arundey688@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:19|81.01 KB|Sent|Message for arundey688@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3155|eCAS_MutualFunds@manipaltechnologies.com|arundey819@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:21|67.37 KB|Sent|Message for arundey819@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3156|eCAS_MutualFunds@manipaltechnologies.com|arundeyhir@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:22|52.32 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3157|eCAS_MutualFunds@manipaltechnologies.com|arundgraham@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:23|62.93 KB|Sent|Message for arundgraham@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3158|eCAS_MutualFunds@manipaltechnologies.com|arundhaati@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:24|59.58 KB|Sent|Message for arundhaati@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3159|eCAS_MutualFunds@manipaltechnologies.com|arundhaka@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:25|59.69 KB|Sent|Message for arundhaka@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3160|eCAS_MutualFunds@manipaltechnologies.com|arundhakappa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:27|61.2 KB|Sent|Message for arundhakappa@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3161|eCAS_MutualFunds@manipaltechnologies.com|arundhakar.mahesh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:28|55.13 KB|Sent|Message for arundhakar.mahesh@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3162|eCAS_MutualFunds@manipaltechnologies.com|arundhakite9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:29|62.21 KB|Sent|Message for arundhakite9@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3163|eCAS_MutualFunds@manipaltechnologies.com|arundhalapathy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:30|75.58 KB|Sent|Message for arundhalapathy@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3164|eCAS_MutualFunds@manipaltechnologies.com|arundhamale24081997@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:31|48.01 KB|Sent|Message for arundhamale24081997@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3165|eCAS_MutualFunds@manipaltechnologies.com|arundhanabal1988@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:33|51.52 KB|Sent|Message for arundhanabal1988@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3166|eCAS_MutualFunds@manipaltechnologies.com|arundhanawade440@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:34|51.87 KB|Sent|Message for arundhanawade440@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3167|eCAS_MutualFunds@manipaltechnologies.com|arundhand74@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:35|61.98 KB|Sent|Message for arundhand74@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3168|eCAS_MutualFunds@manipaltechnologies.com|arundhanola001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:36|58.7 KB|Sent|Message for arundhanola001@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3169|eCAS_MutualFunds@manipaltechnologies.com|arundhanwade637@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:37|59.74 KB|Sent|Message for arundhanwade637@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3170|eCAS_MutualFunds@manipaltechnologies.com|arundhanwai1998@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:39|62.21 KB|Sent|Message for arundhanwai1998@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3171|eCAS_MutualFunds@manipaltechnologies.com|arundhar22017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:40|64.83 KB|Sent|Message for arundhar22017@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3172|eCAS_MutualFunds@manipaltechnologies.com|arundhara4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:41|65.29 KB|Sent|Message for arundhara4@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3173|eCAS_MutualFunds@manipaltechnologies.com|arundhara538@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:42|69.07 KB|Sent|Message for arundhara538@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3174|eCAS_MutualFunds@manipaltechnologies.com|arundhara77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:43|63.2 KB|Sent|Message for arundhara77@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3175|eCAS_MutualFunds@manipaltechnologies.com|arundharankar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:45|71.41 KB|Sent|Message for arundharankar@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3176|eCAS_MutualFunds@manipaltechnologies.com|arundharb@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:46|57.83 KB|Sent|Message for arundharb@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3177|eCAS_MutualFunds@manipaltechnologies.com|arundharij@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:47|65.42 KB|Sent|Message for arundharij@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3178|eCAS_MutualFunds@manipaltechnologies.com|arundharpure74@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:48|70.82 KB|Sent|Message for arundharpure74@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3179|eCAS_MutualFunds@manipaltechnologies.com|arundhathi.hyd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:49|61.1 KB|Sent|Message for arundhathi.hyd@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3180|eCAS_MutualFunds@manipaltechnologies.com|arundhathi155@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:51|52.61 KB|Sent|Message for arundhathi155@yahoo.com accepted by 67.195.228.106:25 (mta6.am0.yahoodns.net) +3181|eCAS_MutualFunds@manipaltechnologies.com|arundhathi1960@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:52|48.25 KB|Sent|Message for arundhathi1960@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3182|eCAS_MutualFunds@manipaltechnologies.com|arundhathi_parasara@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:53|56.5 KB|Sent|Message for arundhathi_parasara@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3183|eCAS_MutualFunds@manipaltechnologies.com|arundhathianju26@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:54|50.83 KB|Sent|Message for arundhathianju26@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3184|eCAS_MutualFunds@manipaltechnologies.com|arundhathikamarapu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:55|77.1 KB|Sent|Message for arundhathikamarapu@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3185|eCAS_MutualFunds@manipaltechnologies.com|arundhathikk0@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:57|55.37 KB|Sent|Message for arundhathikk0@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3186|eCAS_MutualFunds@manipaltechnologies.com|arundhathikunta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:58|55.13 KB|Sent|Message for arundhathikunta@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3187|eCAS_MutualFunds@manipaltechnologies.com|arundhathivenu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:00:59|60.17 KB|Sent|Message for arundhathivenu@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3188|eCAS_MutualFunds@manipaltechnologies.com|arundhati.bg@outlook.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:00|72.22 KB|Sent|Message for arundhati.bg@outlook.com accepted by 52.101.42.19:25 (outlook-com.olc.protection.outlook.com) +3189|eCAS_MutualFunds@manipaltechnologies.com|arundhati.bhanot@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:01|72.95 KB|Sent|Message for arundhati.bhanot@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3190|eCAS_MutualFunds@manipaltechnologies.com|arundhati.bhende@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:03|73.16 KB|Sent|Message for arundhati.bhende@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3191|eCAS_MutualFunds@manipaltechnologies.com|arundhati.biswas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:04|56.92 KB|Sent|Message for arundhati.biswas@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3192|eCAS_MutualFunds@manipaltechnologies.com|arundhati.ch@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:05|62.63 KB|Sent|Message for arundhati.ch@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3193|eCAS_MutualFunds@manipaltechnologies.com|arundhati.chakravarti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:06|64.52 KB|Sent|Message for arundhati.chakravarti@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3194|eCAS_MutualFunds@manipaltechnologies.com|arundhati.chanda2005@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:08|82.99 KB|Sent|Message for arundhati.chanda2005@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3195|eCAS_MutualFunds@manipaltechnologies.com|arundhati.chitale.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:09|58.63 KB|Sent|Message for arundhati.chitale.ac@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3196|eCAS_MutualFunds@manipaltechnologies.com|arundhati.chitale.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:10|69.14 KB|Sent|Message for arundhati.chitale.ac@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3197|eCAS_MutualFunds@manipaltechnologies.com|arundhati.chitale.ac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:11|72.52 KB|Sent|Message for arundhati.chitale.ac@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3198|eCAS_MutualFunds@manipaltechnologies.com|arundhati.chvn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:12|86.17 KB|Sent|Message for arundhati.chvn@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3199|eCAS_MutualFunds@manipaltechnologies.com|arundhati.das1126@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:14|69.81 KB|Sent|Message for arundhati.das1126@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3200|eCAS_MutualFunds@manipaltechnologies.com|arundhati.dutta41@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:15|68.68 KB|Sent|Message for arundhati.dutta41@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3201|eCAS_MutualFunds@manipaltechnologies.com|arundhati.jkumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:16|79.31 KB|Sent|Message for arundhati.jkumar@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3202|eCAS_MutualFunds@manipaltechnologies.com|arundhati.jsh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:17|78.95 KB|Sent|Message for arundhati.jsh@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3203|eCAS_MutualFunds@manipaltechnologies.com|arundhati.kolte4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:18|68.71 KB|Sent|Message for arundhati.kolte4@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3204|eCAS_MutualFunds@manipaltechnologies.com|arundhati.kolte4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:20|70.23 KB|Sent|Message for arundhati.kolte4@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3205|eCAS_MutualFunds@manipaltechnologies.com|arundhati.kothekar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:21|61.47 KB|Sent|Message for arundhati.kothekar@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3206|eCAS_MutualFunds@manipaltechnologies.com|arundhati.mallick@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:22|66.57 KB|Sent|Message for arundhati.mallick@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3207|eCAS_MutualFunds@manipaltechnologies.com|arundhati.mehendale@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:23|50.12 KB|Sent|Message for arundhati.mehendale@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3208|eCAS_MutualFunds@manipaltechnologies.com|arundhati.munje5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:24|71.92 KB|Sent|Message for arundhati.munje5@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3209|eCAS_MutualFunds@manipaltechnologies.com|arundhati.panigrahi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:26|79.68 KB|Sent|Message for arundhati.panigrahi@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3210|eCAS_MutualFunds@manipaltechnologies.com|arundhati.rajurkar11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:27|76.1 KB|Sent|Message for arundhati.rajurkar11@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3211|eCAS_MutualFunds@manipaltechnologies.com|arundhati.sandeep@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:28|64.28 KB|Sent|Message for arundhati.sandeep@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3212|eCAS_MutualFunds@manipaltechnologies.com|arundhati.subhedar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:29|69.44 KB|Sent|Message for arundhati.subhedar@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3213|eCAS_MutualFunds@manipaltechnologies.com|arundhati.sutar@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:30|62.97 KB|Sent|Message for arundhati.sutar@hotmail.com accepted by 52.101.68.4:25 (hotmail-com.olc.protection.outlook.com) +3214|eCAS_MutualFunds@manipaltechnologies.com|arundhati.thakkar@outlook.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:32|64.44 KB|Sent|Message for arundhati.thakkar@outlook.com accepted by 52.101.137.1:25 (outlook-com.olc.protection.outlook.com) +3215|eCAS_MutualFunds@manipaltechnologies.com|arundhati.urfriend@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:33|66.57 KB|Sent|Message for arundhati.urfriend@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3216|eCAS_MutualFunds@manipaltechnologies.com|arundhati.vaeude00@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:34|55.43 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3217|eCAS_MutualFunds@manipaltechnologies.com|arundhati0708@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:35|77.53 KB|Sent|Message for arundhati0708@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3218|eCAS_MutualFunds@manipaltechnologies.com|arundhati0923@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:36|58.26 KB|Sent|Message for arundhati0923@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3219|eCAS_MutualFunds@manipaltechnologies.com|arundhati1003@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:38|84.57 KB|Sent|Message for arundhati1003@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3220|eCAS_MutualFunds@manipaltechnologies.com|arundhati1797@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:39|64.4 KB|Sent|Message for arundhati1797@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3221|eCAS_MutualFunds@manipaltechnologies.com|arundhati1956@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:40|64.64 KB|Sent|Message for arundhati1956@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3222|eCAS_MutualFunds@manipaltechnologies.com|arundhati1976@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:41|62.6 KB|Sent|Message for arundhati1976@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3223|eCAS_MutualFunds@manipaltechnologies.com|arundhati1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:42|62.62 KB|Sent|Message for arundhati1980@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3224|eCAS_MutualFunds@manipaltechnologies.com|arundhati1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:44|56.61 KB|Sent|Message for arundhati1987@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3225|eCAS_MutualFunds@manipaltechnologies.com|arundhati20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:45|91.5 KB|Sent|Message for arundhati20@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3226|eCAS_MutualFunds@manipaltechnologies.com|arundhati2109@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:46|51.99 KB|Sent|Message for arundhati2109@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3227|eCAS_MutualFunds@manipaltechnologies.com|arundhati2109@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:47|66.88 KB|Sent|Message for arundhati2109@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3228|eCAS_MutualFunds@manipaltechnologies.com|arundhati245@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:48|55.24 KB|Sent|Message for arundhati245@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3229|eCAS_MutualFunds@manipaltechnologies.com|arundhati251@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:50|70.23 KB|Sent|Message for arundhati251@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3230|eCAS_MutualFunds@manipaltechnologies.com|arundhati30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:51|61.2 KB|Sent|Message for arundhati30@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3231|eCAS_MutualFunds@manipaltechnologies.com|arundhati62@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:52|48.78 KB|Sent|Message for arundhati62@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3232|eCAS_MutualFunds@manipaltechnologies.com|arundhati65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:53|69.73 KB|Sent|Message for arundhati65@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3233|eCAS_MutualFunds@manipaltechnologies.com|arundhati85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:54|60.67 KB|Sent|Message for arundhati85@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3234|eCAS_MutualFunds@manipaltechnologies.com|arundhati@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:56|57.84 KB|Sent|Message for arundhati@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|No SMTP servers were available for menhortogether.org. No hosts to try. +3235|eCAS_MutualFunds@manipaltechnologies.com|arundhati@menhortogether.org|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:57|62.95 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arundhati@menhortogether.org to suppression list because delivery has failed 18 times. +3236|eCAS_MutualFunds@manipaltechnologies.com|arundhati_05_07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:58|64.61 KB|HardFail|Permanent SMTP delivery error when sending to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 194.19.134.80:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 185.138.56.208:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 185.138.56.208:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 185.138.56.208:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 194.19.134.80:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 194.19.134.80:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 194.19.134.80:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 185.138.56.208:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 185.138.56.208:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 185.138.56.208:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 194.19.134.80:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 185.138.56.208:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 185.138.56.208:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 194.19.134.80:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|No SMTP servers were available for inbox.com. Tried mx.dka.mailcore.net. +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 194.19.134.80:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 185.138.56.208:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Temporary SMTP delivery error when sending to 185.138.56.208:25 (mx.dka.mailcore.net) +3237|eCAS_MutualFunds@manipaltechnologies.com|arundhati_choudhury@inbox.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:01:59|54.82 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arundhati_choudhury@inbox.com to suppression list because delivery has failed 18 times. +3238|eCAS_MutualFunds@manipaltechnologies.com|arundhati_jana123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:01|55.28 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3239|eCAS_MutualFunds@manipaltechnologies.com|arundhati_kelkar@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:02|53.37 KB|Sent|Message for arundhati_kelkar@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +3240|eCAS_MutualFunds@manipaltechnologies.com|arundhati_nsn@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:03|60.06 KB|Sent|Message for arundhati_nsn@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +3241|eCAS_MutualFunds@manipaltechnologies.com|arundhati_sp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:04|59.26 KB|Sent|Message for arundhati_sp@yahoo.com accepted by 98.136.96.91:25 (mta5.am0.yahoodns.net) +3242|eCAS_MutualFunds@manipaltechnologies.com|arundhati_sp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:05|67.83 KB|Sent|Message for arundhati_sp@yahoo.com accepted by 98.136.96.91:25 (mta5.am0.yahoodns.net) +3243|eCAS_MutualFunds@manipaltechnologies.com|arundhatiacharya1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:07|78.41 KB|Sent|Message for arundhatiacharya1@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3244|eCAS_MutualFunds@manipaltechnologies.com|arundhatiarjaria07@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:08|60.02 KB|Sent|Message for arundhatiarjaria07@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3245|eCAS_MutualFunds@manipaltechnologies.com|arundhatiatre444@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:09|78.13 KB|Sent|Message for arundhatiatre444@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3246|eCAS_MutualFunds@manipaltechnologies.com|arundhatib22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:10|59.32 KB|Sent|Message for arundhatib22@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3247|eCAS_MutualFunds@manipaltechnologies.com|arundhatib702@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:11|51.68 KB|Sent|Message for arundhatib702@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3248|eCAS_MutualFunds@manipaltechnologies.com|arundhatibaksi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:13|66.54 KB|Sent|Message for arundhatibaksi@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3249|eCAS_MutualFunds@manipaltechnologies.com|arundhatibanerjee100@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:14|58.6 KB|Sent|Message for arundhatibanerjee100@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3250|eCAS_MutualFunds@manipaltechnologies.com|arundhatibarge@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:15|55.1 KB|Sent|Message for arundhatibarge@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3251|eCAS_MutualFunds@manipaltechnologies.com|arundhatibarik71@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:16|51.46 KB|Sent|Message for arundhatibarik71@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3252|eCAS_MutualFunds@manipaltechnologies.com|arundhatibgohain06@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:17|61.93 KB|Sent|Message for arundhatibgohain06@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3253|eCAS_MutualFunds@manipaltechnologies.com|arundhatibhaskar77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:19|65.48 KB|Sent|Message for arundhatibhaskar77@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3254|eCAS_MutualFunds@manipaltechnologies.com|arundhatibhattacharjee953@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:20|68.75 KB|Sent|Message for arundhatibhattacharjee953@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3255|eCAS_MutualFunds@manipaltechnologies.com|arundhatibhattacharjee953@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:21|62.11 KB|Sent|Message for arundhatibhattacharjee953@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3256|eCAS_MutualFunds@manipaltechnologies.com|arundhatibhaumik1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:22|47.58 KB|Sent|Message for arundhatibhaumik1987@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3257|eCAS_MutualFunds@manipaltechnologies.com|arundhatibhowmik4328@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:23|57.15 KB|Sent|Message for arundhatibhowmik4328@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3258|eCAS_MutualFunds@manipaltechnologies.com|arundhatibire@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:25|82.47 KB|Sent|Message for arundhatibire@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3259|eCAS_MutualFunds@manipaltechnologies.com|arundhatibis@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:26|58.84 KB|Sent|Message for arundhatibis@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3260|eCAS_MutualFunds@manipaltechnologies.com|arundhatibishnukoley123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:27|66.08 KB|Sent|Message for arundhatibishnukoley123@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3261|eCAS_MutualFunds@manipaltechnologies.com|arundhatibonia@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:28|60.48 KB|Sent|Message for arundhatibonia@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3262|eCAS_MutualFunds@manipaltechnologies.com|arundhatiborah23@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:29|59.36 KB|Sent|Message for arundhatiborah23@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3263|eCAS_MutualFunds@manipaltechnologies.com|arundhatibose00@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:31|83.9 KB|Sent|Message for arundhatibose00@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3264|eCAS_MutualFunds@manipaltechnologies.com|arundhatid57@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:32|71.05 KB|Sent|Message for arundhatid57@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3265|eCAS_MutualFunds@manipaltechnologies.com|arundhatid57@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:33|55.77 KB|Sent|Message for arundhatid57@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3266|eCAS_MutualFunds@manipaltechnologies.com|arundhatidas75@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:34|57.12 KB|Sent|Message for arundhatidas75@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3267|eCAS_MutualFunds@manipaltechnologies.com|arundhatidebtewari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:35|86.01 KB|Sent|Message for arundhatidebtewari@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3268|eCAS_MutualFunds@manipaltechnologies.com|arundhatidevi99@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:37|74.21 KB|Sent|Message for arundhatidevi99@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3269|eCAS_MutualFunds@manipaltechnologies.com|arundhatidubey@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:38|68.21 KB|Sent|Message for arundhatidubey@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3270|eCAS_MutualFunds@manipaltechnologies.com|arundhatighosal309@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:39|71.16 KB|Sent|Message for arundhatighosal309@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3271|eCAS_MutualFunds@manipaltechnologies.com|arundhatighosh2777@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:40|62.45 KB|Sent|Message for arundhatighosh2777@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3272|eCAS_MutualFunds@manipaltechnologies.com|arundhatigogoi64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:41|56.98 KB|Sent|Message for arundhatigogoi64@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3273|eCAS_MutualFunds@manipaltechnologies.com|arundhatigunjkar86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:43|56.97 KB|Sent|Message for arundhatigunjkar86@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3274|eCAS_MutualFunds@manipaltechnologies.com|arundhatigupta16@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:44|57.55 KB|Sent|Message for arundhatigupta16@yahoo.com accepted by 98.136.96.75:25 (mta6.am0.yahoodns.net) +3275|eCAS_MutualFunds@manipaltechnologies.com|arundhatih@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:45|56.83 KB|Sent|Message for arundhatih@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3276|eCAS_MutualFunds@manipaltechnologies.com|arundhatihota6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:46|52.49 KB|Sent|Message for arundhatihota6@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3277|eCAS_MutualFunds@manipaltechnologies.com|arundhatijangid@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:47|64.25 KB|Sent|Message for arundhatijangid@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3278|eCAS_MutualFunds@manipaltechnologies.com|arundhatikamalapurkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:49|57.67 KB|Sent|Message for arundhatikamalapurkar@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3279|eCAS_MutualFunds@manipaltechnologies.com|arundhatikashyap26@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:50|59.23 KB|Sent|Message for arundhatikashyap26@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3280|eCAS_MutualFunds@manipaltechnologies.com|arundhatilahiri23@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:51|68.47 KB|Sent|Message for arundhatilahiri23@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3281|eCAS_MutualFunds@manipaltechnologies.com|arundhatilahiri23@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:52|75.67 KB|Sent|Message for arundhatilahiri23@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3282|eCAS_MutualFunds@manipaltechnologies.com|arundhatilasonkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:53|55.55 KB|Sent|Message for arundhatilasonkar@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3283|eCAS_MutualFunds@manipaltechnologies.com|arundhatimail@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:55|53.17 KB|Sent|Message for arundhatimail@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3284|eCAS_MutualFunds@manipaltechnologies.com|arundhatimajhi20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:56|50.2 KB|Sent|Message for arundhatimajhi20@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3285|eCAS_MutualFunds@manipaltechnologies.com|arundhatimanda@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:57|99.72 KB|Sent|Message for arundhatimanda@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3286|eCAS_MutualFunds@manipaltechnologies.com|arundhatimanda@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:58|54.59 KB|Sent|Message for arundhatimanda@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3287|eCAS_MutualFunds@manipaltechnologies.com|arundhatimirajkar@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:02:59|60.22 KB|Sent|Message for arundhatimirajkar@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3288|eCAS_MutualFunds@manipaltechnologies.com|arundhatimohan94@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:01|52.34 KB|Sent|Message for arundhatimohan94@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3289|eCAS_MutualFunds@manipaltechnologies.com|arundhatimohanty000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:02|70.06 KB|Sent|Message for arundhatimohanty000@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3290|eCAS_MutualFunds@manipaltechnologies.com|arundhatimohapatra2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:03|48.24 KB|Sent|Message for arundhatimohapatra2@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3291|eCAS_MutualFunds@manipaltechnologies.com|arundhatimukerji@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:04|73.77 KB|Sent|Message for arundhatimukerji@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3292|eCAS_MutualFunds@manipaltechnologies.com|arundhatimy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:05|67.56 KB|Sent|Message for arundhatimy@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3293|eCAS_MutualFunds@manipaltechnologies.com|arundhatinalawade025@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:07|51.61 KB|Sent|Message for arundhatinalawade025@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3294|eCAS_MutualFunds@manipaltechnologies.com|arundhatinpatil1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:08|60.17 KB|Sent|Message for arundhatinpatil1@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3295|eCAS_MutualFunds@manipaltechnologies.com|arundhatinpatil1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:09|63.2 KB|Sent|Message for arundhatinpatil1@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3296|eCAS_MutualFunds@manipaltechnologies.com|arundhatinune9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:10|52.2 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3297|eCAS_MutualFunds@manipaltechnologies.com|arundhatipatil584@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:11|65.84 KB|Sent|Message for arundhatipatil584@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3298|eCAS_MutualFunds@manipaltechnologies.com|arundhatipaul1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:13|103.52 KB|Sent|Message for arundhatipaul1@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3299|eCAS_MutualFunds@manipaltechnologies.com|arundhatipawar7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:14|69.29 KB|Sent|Message for arundhatipawar7@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3300|eCAS_MutualFunds@manipaltechnologies.com|arundhatipawar7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:15|58.55 KB|Sent|Message for arundhatipawar7@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3301|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:16|64.2 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arundhatiroy1801@gmail.com to suppression list because delivery has failed 18 times. +3302|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy56@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:17|54.53 KB|Sent|Message for arundhatiroy56@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3303|eCAS_MutualFunds@manipaltechnologies.com|arundhatiroy88@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:19|54.83 KB|Sent|Message for arundhatiroy88@yahoo.com accepted by 67.195.228.110:25 (mta5.am0.yahoodns.net) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3304|eCAS_MutualFunds@manipaltechnologies.com|arundhatis2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:20|69.82 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arundhatis2014@gmail.com to suppression list because delivery has failed 18 times. +3305|eCAS_MutualFunds@manipaltechnologies.com|arundhatis471@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:21|59.69 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3306|eCAS_MutualFunds@manipaltechnologies.com|arundhatisaha11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:22|95.89 KB|Sent|Message for arundhatisaha11@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3307|eCAS_MutualFunds@manipaltechnologies.com|arundhatisaha11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:23|94.0 KB|Sent|Message for arundhatisaha11@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3308|eCAS_MutualFunds@manipaltechnologies.com|arundhatisahu6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:25|85.83 KB|Sent|Message for arundhatisahu6@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3309|eCAS_MutualFunds@manipaltechnologies.com|arundhatisanyal.byasrki@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:26|62.59 KB|Sent|Message for arundhatisanyal.byasrki@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3310|eCAS_MutualFunds@manipaltechnologies.com|arundhatisenapati52@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:27|79.71 KB|Sent|Message for arundhatisenapati52@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3311|eCAS_MutualFunds@manipaltechnologies.com|arundhatisg.online@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:28|79.2 KB|Sent|Message for arundhatisg.online@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3312|eCAS_MutualFunds@manipaltechnologies.com|arundhatisharma1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:29|56.01 KB|Sent|Message for arundhatisharma1@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3313|eCAS_MutualFunds@manipaltechnologies.com|arundhatitalari7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:31|74.46 KB|Sent|Message for arundhatitalari7@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3314|eCAS_MutualFunds@manipaltechnologies.com|arundhatitrivedi68@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:32|52.21 KB|Sent|Message for arundhatitrivedi68@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3315|eCAS_MutualFunds@manipaltechnologies.com|arundhativaid@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:33|73.81 KB|Sent|Message for arundhativaid@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3316|eCAS_MutualFunds@manipaltechnologies.com|arundhativaidya@hatway.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:34|57.35 KB|Sent|Message for arundhativaidya@hatway.com accepted by 103.224.212.34:25 (park-mx.above.com) +3317|eCAS_MutualFunds@manipaltechnologies.com|arundhativerma93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:36|66.73 KB|Sent|Message for arundhativerma93@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3318|eCAS_MutualFunds@manipaltechnologies.com|arundhativr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:37|74.61 KB|Sent|Message for arundhativr@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3319|eCAS_MutualFunds@manipaltechnologies.com|arundhikale1333@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:38|63.04 KB|Sent|Message for arundhikale1333@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3320|eCAS_MutualFunds@manipaltechnologies.com|arundhillon137@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:39|58.23 KB|Sent|Message for arundhillon137@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3321|eCAS_MutualFunds@manipaltechnologies.com|arundhillon658@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:40|57.87 KB|Sent|Message for arundhillon658@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3322|eCAS_MutualFunds@manipaltechnologies.com|arundhiman134@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:42|51.11 KB|Sent|Message for arundhiman134@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3323|eCAS_MutualFunds@manipaltechnologies.com|arundhingra44@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:43|58.48 KB|Sent|Message for arundhingra44@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3324|eCAS_MutualFunds@manipaltechnologies.com|arundhita10@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:44|60.23 KB|Sent|Message for arundhita10@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3325|eCAS_MutualFunds@manipaltechnologies.com|arundhita91@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:45|69.47 KB|Sent|Message for arundhita91@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3326|eCAS_MutualFunds@manipaltechnologies.com|arundhok17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:46|71.37 KB|Sent|Message for arundhok17@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3327|eCAS_MutualFunds@manipaltechnologies.com|arundhoke8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:48|66.79 KB|Sent|Message for arundhoke8@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3328|eCAS_MutualFunds@manipaltechnologies.com|arundhotre351@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:49|70.0 KB|Sent|Message for arundhotre351@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3329|eCAS_MutualFunds@manipaltechnologies.com|arundhume@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:50|64.7 KB|Sent|Message for arundhume@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3330|eCAS_MutualFunds@manipaltechnologies.com|arundhuri77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:51|57.73 KB|Sent|Message for arundhuri77@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3331|eCAS_MutualFunds@manipaltechnologies.com|arundhusa10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:52|51.17 KB|Sent|Message for arundhusa10@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3332|eCAS_MutualFunds@manipaltechnologies.com|arundhuti.das9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:54|58.85 KB|Sent|Message for arundhuti.das9@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3333|eCAS_MutualFunds@manipaltechnologies.com|arundhuti.das9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:55|55.5 KB|Sent|Message for arundhuti.das9@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3334|eCAS_MutualFunds@manipaltechnologies.com|arundhuti.poddar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:56|52.81 KB|Sent|Message for arundhuti.poddar@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3335|eCAS_MutualFunds@manipaltechnologies.com|arundhuti12bose@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:57|55.76 KB|Sent|Message for arundhuti12bose@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3336|eCAS_MutualFunds@manipaltechnologies.com|arundhuti19711@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:03:58|61.62 KB|Sent|Message for arundhuti19711@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3337|eCAS_MutualFunds@manipaltechnologies.com|arundhuti22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:00|60.05 KB|Sent|Message for arundhuti22@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3338|eCAS_MutualFunds@manipaltechnologies.com|arundhuti88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:01|92.73 KB|Sent|Message for arundhuti88@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3339|eCAS_MutualFunds@manipaltechnologies.com|arundhuti98@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:02|55.8 KB|Sent|Message for arundhuti98@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3340|eCAS_MutualFunds@manipaltechnologies.com|arundhutiadhya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:03|60.76 KB|Sent|Message for arundhutiadhya@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3341|eCAS_MutualFunds@manipaltechnologies.com|arundhutibanerjee88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:05|63.66 KB|Sent|Message for arundhutibanerjee88@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3342|eCAS_MutualFunds@manipaltechnologies.com|arundhutiboruah1969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:06|55.54 KB|Sent|Message for arundhutiboruah1969@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3343|eCAS_MutualFunds@manipaltechnologies.com|arundhutim1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:07|81.52 KB|Sent|Message for arundhutim1@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3344|eCAS_MutualFunds@manipaltechnologies.com|arundhutimallick37@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:08|65.7 KB|Sent|Message for arundhutimallick37@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3345|eCAS_MutualFunds@manipaltechnologies.com|arundhutimazumder0141@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:09|52.51 KB|Sent|Message for arundhutimazumder0141@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3346|eCAS_MutualFunds@manipaltechnologies.com|arundhutimondal56@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:10|76.02 KB|Sent|Message for arundhutimondal56@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3347|eCAS_MutualFunds@manipaltechnologies.com|arundhutimullick4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:12|56.92 KB|Sent|Message for arundhutimullick4@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3348|eCAS_MutualFunds@manipaltechnologies.com|arundhutir@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:13|59.25 KB|Sent|Message for arundhutir@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3349|eCAS_MutualFunds@manipaltechnologies.com|arundhutir@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:14|63.29 KB|Sent|Message for arundhutir@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3350|eCAS_MutualFunds@manipaltechnologies.com|arundhutiroy63@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:15|48.42 KB|Sent|Message for arundhutiroy63@yahoo.com accepted by 67.195.204.74:25 (mta6.am0.yahoodns.net) +3351|eCAS_MutualFunds@manipaltechnologies.com|arundhutirudra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:17|64.81 KB|Sent|Message for arundhutirudra@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3352|eCAS_MutualFunds@manipaltechnologies.com|arundhutisarkar1801@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:18|72.71 KB|Sent|Message for arundhutisarkar1801@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3353|eCAS_MutualFunds@manipaltechnologies.com|arundhutisingha70@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:19|60.85 KB|Sent|Message for arundhutisingha70@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3354|eCAS_MutualFunds@manipaltechnologies.com|arundhutytalukdar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:20|54.64 KB|Sent|Message for arundhutytalukdar@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3355|eCAS_MutualFunds@manipaltechnologies.com|arundidwania45@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:21|60.97 KB|Sent|Message for arundidwania45@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3356|eCAS_MutualFunds@manipaltechnologies.com|arundidwaniya1977@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:23|52.26 KB|Sent|Message for arundidwaniya1977@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3357|eCAS_MutualFunds@manipaltechnologies.com|arundigistudio@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:24|61.78 KB|Sent|Message for arundigistudio@yahoo.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3358|eCAS_MutualFunds@manipaltechnologies.com|arundigole1960@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:25|62.59 KB|Sent|Message for arundigole1960@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3359|eCAS_MutualFunds@manipaltechnologies.com|arundilpak716@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:26|57.83 KB|Sent|Message for arundilpak716@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3360|eCAS_MutualFunds@manipaltechnologies.com|arundimri123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:27|59.86 KB|Sent|Message for arundimri123@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3361|eCAS_MutualFunds@manipaltechnologies.com|arundimri555@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:29|78.23 KB|Sent|Message for arundimri555@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3362|eCAS_MutualFunds@manipaltechnologies.com|arundinda369@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:30|62.97 KB|Sent|Message for arundinda369@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3363|eCAS_MutualFunds@manipaltechnologies.com|arundinesh2025@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:31|54.72 KB|Sent|Message for arundinesh2025@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3364|eCAS_MutualFunds@manipaltechnologies.com|arundinkar228@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:32|57.63 KB|Sent|Message for arundinkar228@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3365|eCAS_MutualFunds@manipaltechnologies.com|arundinkarnewalkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:33|75.6 KB|Sent|Message for arundinkarnewalkar@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3366|eCAS_MutualFunds@manipaltechnologies.com|arundipchowdhury.webvision@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:35|77.96 KB|Sent|Message for arundipchowdhury.webvision@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3367|eCAS_MutualFunds@manipaltechnologies.com|arundirect@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:36|52.66 KB|Sent|Message for arundirect@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3368|eCAS_MutualFunds@manipaltechnologies.com|arundisha1926@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:37|56.33 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arundisha1926@gmail.com to suppression list because delivery has failed 18 times. +3369|eCAS_MutualFunds@manipaltechnologies.com|arundiwakermbd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:38|67.71 KB|Sent|Message for arundiwakermbd@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3370|eCAS_MutualFunds@manipaltechnologies.com|arundiwedi27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:40|53.79 KB|Sent|Message for arundiwedi27@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3371|eCAS_MutualFunds@manipaltechnologies.com|arundixit.1726@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:41|53.95 KB|Sent|Message for arundixit.1726@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3372|eCAS_MutualFunds@manipaltechnologies.com|arundixit1966@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:42|67.73 KB|Sent|Message for arundixit1966@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3373|eCAS_MutualFunds@manipaltechnologies.com|arundixit1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:43|49.81 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arundixit1967@gmail.com to suppression list because delivery has failed 18 times. +3374|eCAS_MutualFunds@manipaltechnologies.com|arundixit763@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:44|61.62 KB|Sent|Message for arundixit763@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3375|eCAS_MutualFunds@manipaltechnologies.com|arundixit78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:46|52.15 KB|Sent|Message for arundixit78@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3376|eCAS_MutualFunds@manipaltechnologies.com|arundiyagoyal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:47|61.58 KB|Sent|Message for arundiyagoyal@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3377|eCAS_MutualFunds@manipaltechnologies.com|arundmahajan21@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:48|58.4 KB|Sent|Message for arundmahajan21@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3378|eCAS_MutualFunds@manipaltechnologies.com|arundmdc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:49|68.44 KB|Sent|Message for arundmdc@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3379|eCAS_MutualFunds@manipaltechnologies.com|arundnair09@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:50|51.13 KB|Sent|Message for arundnair09@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3380|eCAS_MutualFunds@manipaltechnologies.com|arundnair2003@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:52|75.66 KB|Sent|Message for arundnair2003@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3381|eCAS_MutualFunds@manipaltechnologies.com|arundnpr_bsnl@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:53|67.75 KB|Sent|Message for arundnpr_bsnl@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3382|eCAS_MutualFunds@manipaltechnologies.com|arundogle@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:54|55.38 KB|Sent|Message for arundogle@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3383|eCAS_MutualFunds@manipaltechnologies.com|arundogra31.3.2001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:55|61.97 KB|Sent|Message for arundogra31.3.2001@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3384|eCAS_MutualFunds@manipaltechnologies.com|arundogra71963@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:56|81.99 KB|Sent|Message for arundogra71963@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3385|eCAS_MutualFunds@manipaltechnologies.com|arundogra99@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:58|59.67 KB|Sent|Message for arundogra99@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3386|eCAS_MutualFunds@manipaltechnologies.com|arundome78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:04:59|67.87 KB|Sent|Message for arundome78@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3387|eCAS_MutualFunds@manipaltechnologies.com|arundontum1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:00|59.53 KB|Sent|Message for arundontum1987@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3388|eCAS_MutualFunds@manipaltechnologies.com|arundora677@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:01|91.32 KB|Sent|Message for arundora677@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3389|eCAS_MutualFunds@manipaltechnologies.com|arundos42@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:02|57.43 KB|Sent|Message for arundos42@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3390|eCAS_MutualFunds@manipaltechnologies.com|arundotiyal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:04|64.77 KB|Sent|Message for arundotiyal@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3391|eCAS_MutualFunds@manipaltechnologies.com|arundoyang@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:05|58.94 KB|Sent|Message for arundoyang@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3392|eCAS_MutualFunds@manipaltechnologies.com|arundpal72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:06|56.56 KB|Sent|Message for arundpal72@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3393|eCAS_MutualFunds@manipaltechnologies.com|arundpal72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:07|67.42 KB|Sent|Message for arundpal72@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3394|eCAS_MutualFunds@manipaltechnologies.com|arundpansare1990@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:08|62.82 KB|Sent|Message for arundpansare1990@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3395|eCAS_MutualFunds@manipaltechnologies.com|arundpatel36@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:10|52.85 KB|Sent|Message for arundpatel36@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3396|eCAS_MutualFunds@manipaltechnologies.com|arundpatel36@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:11|63.61 KB|Sent|Message for arundpatel36@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3397|eCAS_MutualFunds@manipaltechnologies.com|arundream1988@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:12|52.79 KB|Sent|Message for arundream1988@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3398|eCAS_MutualFunds@manipaltechnologies.com|arundreambig84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:13|84.96 KB|Sent|Message for arundreambig84@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3399|eCAS_MutualFunds@manipaltechnologies.com|arundrn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:14|68.13 KB|Sent|Message for arundrn@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3400|eCAS_MutualFunds@manipaltechnologies.com|arundsharma271@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:16|68.62 KB|Sent|Message for arundsharma271@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3401|eCAS_MutualFunds@manipaltechnologies.com|arundsilva777@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:17|59.3 KB|Sent|Message for arundsilva777@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3402|eCAS_MutualFunds@manipaltechnologies.com|arundsouzabrindel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:18|75.09 KB|Sent|Message for arundsouzabrindel@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3403|eCAS_MutualFunds@manipaltechnologies.com|arundubal1453@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:19|63.55 KB|Sent|Message for arundubal1453@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3404|eCAS_MutualFunds@manipaltechnologies.com|arundube1981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:20|64.49 KB|Sent|Message for arundube1981@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3405|eCAS_MutualFunds@manipaltechnologies.com|arundubey05b@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:22|60.28 KB|Sent|Message for arundubey05b@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3406|eCAS_MutualFunds@manipaltechnologies.com|arundubey1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:23|61.79 KB|Sent|Message for arundubey1234@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3407|eCAS_MutualFunds@manipaltechnologies.com|arundubey196@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:24|71.53 KB|Sent|Message for arundubey196@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3408|eCAS_MutualFunds@manipaltechnologies.com|arundubey23@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:25|52.17 KB|Sent|Message for arundubey23@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3409|eCAS_MutualFunds@manipaltechnologies.com|arundubey3166@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:27|53.27 KB|Sent|Message for arundubey3166@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3410|eCAS_MutualFunds@manipaltechnologies.com|arundubey6522@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:28|50.17 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3411|eCAS_MutualFunds@manipaltechnologies.com|arundubeykumar9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:29|67.7 KB|Sent|Message for arundubeykumar9@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3412|eCAS_MutualFunds@manipaltechnologies.com|arunduggal0405@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:30|52.7 KB|Sent|Message for arunduggal0405@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3413|eCAS_MutualFunds@manipaltechnologies.com|arunduggal26@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:31|68.29 KB|Sent|Message for arunduggal26@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3414|eCAS_MutualFunds@manipaltechnologies.com|arunduggirala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:33|51.35 KB|Sent|Message for arunduggirala@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3415|eCAS_MutualFunds@manipaltechnologies.com|arundukre04@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:34|52.39 KB|Sent|Message for arundukre04@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3416|eCAS_MutualFunds@manipaltechnologies.com|arundumbre2151@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:35|57.5 KB|Sent|Message for arundumbre2151@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3417|eCAS_MutualFunds@manipaltechnologies.com|arundumka56@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:36|69.75 KB|Sent|Message for arundumka56@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3418|eCAS_MutualFunds@manipaltechnologies.com|arundurai50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:37|56.55 KB|Sent|Message for arundurai50@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3419|eCAS_MutualFunds@manipaltechnologies.com|arundurai@live.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:39|81.99 KB|Sent|Message for arundurai@live.com accepted by 52.101.10.17:25 (live-com.olc.protection.outlook.com) +3420|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj.a@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:40|70.87 KB|Sent|Message for arundurairaj.a@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta6.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta5.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta5.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta5.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta5.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta7.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta7.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta5.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta5.am0.yahoodns.net) +3421|eCAS_MutualFunds@manipaltechnologies.com|arundurairaj95@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:41|54.16 KB|Sent|Message for arundurairaj95@yahoo.com accepted by 67.195.228.106:25 (mta7.am0.yahoodns.net) +3422|eCAS_MutualFunds@manipaltechnologies.com|arundurga1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:42|57.81 KB|Sent|Message for arundurga1983@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3423|eCAS_MutualFunds@manipaltechnologies.com|arundushmikar24@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:43|61.16 KB|Sent|Message for arundushmikar24@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3424|eCAS_MutualFunds@manipaltechnologies.com|arundustin@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:45|78.1 KB|Sent|Message for arundustin@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3425|eCAS_MutualFunds@manipaltechnologies.com|arundutta.1036@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:46|80.77 KB|Sent|Message for arundutta.1036@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3426|eCAS_MutualFunds@manipaltechnologies.com|arundutta.jio@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:47|64.26 KB|Sent|Message for arundutta.jio@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3427|eCAS_MutualFunds@manipaltechnologies.com|arundutta11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:48|66.38 KB|Sent|Message for arundutta11@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3428|eCAS_MutualFunds@manipaltechnologies.com|arundutta1975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:50|56.03 KB|Sent|Message for arundutta1975@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3429|eCAS_MutualFunds@manipaltechnologies.com|arundutta1975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:51|61.23 KB|Sent|Message for arundutta1975@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3430|eCAS_MutualFunds@manipaltechnologies.com|arundutta2008@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:52|51.76 KB|Sent|Message for arundutta2008@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3431|eCAS_MutualFunds@manipaltechnologies.com|arundutta3010@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:53|72.71 KB|Sent|Message for arundutta3010@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3432|eCAS_MutualFunds@manipaltechnologies.com|arundutta619@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:54|62.08 KB|Sent|Message for arundutta619@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3433|eCAS_MutualFunds@manipaltechnologies.com|arundutta733950@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:56|48.42 KB|Sent|Message for arundutta733950@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3434|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:57|63.75 KB|Sent|Message for arundutta85@yahoo.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3435|eCAS_MutualFunds@manipaltechnologies.com|arundutta85@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:58|58.96 KB|Sent|Message for arundutta85@yahoo.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3436|eCAS_MutualFunds@manipaltechnologies.com|arunduttak@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:05:59|74.55 KB|Sent|Message for arunduttak@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3437|eCAS_MutualFunds@manipaltechnologies.com|arunduwarah543@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:00|57.79 KB|Sent|Message for arunduwarah543@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3438|eCAS_MutualFunds@manipaltechnologies.com|arundwivedi.ad72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:02|56.83 KB|Sent|Message for arundwivedi.ad72@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3439|eCAS_MutualFunds@manipaltechnologies.com|arundwivedi1008@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:03|68.44 KB|Sent|Message for arundwivedi1008@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3440|eCAS_MutualFunds@manipaltechnologies.com|arundwivedi686@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:04|76.6 KB|Sent|Message for arundwivedi686@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3441|eCAS_MutualFunds@manipaltechnologies.com|arundwivedi8816@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:05|57.14 KB|Sent|Message for arundwivedi8816@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3442|eCAS_MutualFunds@manipaltechnologies.com|arundwivediapril1969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:07|73.6 KB|Sent|Message for arundwivediapril1969@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3443|eCAS_MutualFunds@manipaltechnologies.com|arundycl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:08|79.27 KB|Sent|Message for arundycl@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3444|eCAS_MutualFunds@manipaltechnologies.com|arundyj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:09|64.87 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arundyj@gmail.com to suppression list because delivery has failed 18 times. +3445|eCAS_MutualFunds@manipaltechnologies.com|arundyuti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:10|67.07 KB|Sent|Message for arundyuti@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3446|eCAS_MutualFunds@manipaltechnologies.com|arunec007@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:12|52.34 KB|Sent|Message for arunec007@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3447|eCAS_MutualFunds@manipaltechnologies.com|arunece612@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:13|61.18 KB|Sent|Message for arunece612@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3448|eCAS_MutualFunds@manipaltechnologies.com|arunece@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:14|81.34 KB|Sent|Message for arunece@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3449|eCAS_MutualFunds@manipaltechnologies.com|arunecrocks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:15|62.9 KB|Sent|Message for arunecrocks@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3450|eCAS_MutualFunds@manipaltechnologies.com|arunedavacodu347@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:16|67.55 KB|Sent|Message for arunedavacodu347@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3451|eCAS_MutualFunds@manipaltechnologies.com|arunedra934@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:18|50.01 KB|Sent|Message for arunedra934@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3452|eCAS_MutualFunds@manipaltechnologies.com|arunee.engineer@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:19|66.89 KB|Sent|Message for arunee.engineer@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3453|eCAS_MutualFunds@manipaltechnologies.com|arunee66@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:20|77.23 KB|Sent|Message for arunee66@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3454|eCAS_MutualFunds@manipaltechnologies.com|aruneeshsharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:21|68.64 KB|Sent|Message for aruneeshsharma@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3455|eCAS_MutualFunds@manipaltechnologies.com|aruneeshtiwari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:22|60.4 KB|Sent|Message for aruneeshtiwari@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3456|eCAS_MutualFunds@manipaltechnologies.com|aruneet@tulip.net|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:24|51.62 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.68.26:25 (aspmx.l.google.com) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta5.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta7.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta5.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta7.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta6.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta7.am0.yahoodns.net) +3457|eCAS_MutualFunds@manipaltechnologies.com|aruneey01@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:25|64.93 KB|Sent|Message for aruneey01@yahoo.com accepted by 67.195.228.110:25 (mta6.am0.yahoodns.net) +3458|eCAS_MutualFunds@manipaltechnologies.com|arunehru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:26|61.43 KB|Sent|Message for arunehru@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3459|eCAS_MutualFunds@manipaltechnologies.com|aruneicher25@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:27|57.13 KB|Sent|Message for aruneicher25@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3460|eCAS_MutualFunds@manipaltechnologies.com|arunekka959@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:28|53.85 KB|Sent|Message for arunekka959@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3461|eCAS_MutualFunds@manipaltechnologies.com|arunel1990@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:30|62.47 KB|Sent|Message for arunel1990@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3462|eCAS_MutualFunds@manipaltechnologies.com|arunelawyer@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:31|51.08 KB|Sent|Message for arunelawyer@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3463|eCAS_MutualFunds@manipaltechnologies.com|arunellandula91@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:32|49.81 KB|Sent|Message for arunellandula91@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3464|eCAS_MutualFunds@manipaltechnologies.com|arunendr1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:33|49.92 KB|Sent|Message for arunendr1983@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3465|eCAS_MutualFunds@manipaltechnologies.com|arunendra.kumar1959@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:34|70.02 KB|Sent|Message for arunendra.kumar1959@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3466|eCAS_MutualFunds@manipaltechnologies.com|arunendrakumar.dlw@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:36|54.33 KB|Sent|Message for arunendrakumar.dlw@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3467|eCAS_MutualFunds@manipaltechnologies.com|arunendrakumar2010@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:37|50.56 KB|Sent|Message for arunendrakumar2010@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3468|eCAS_MutualFunds@manipaltechnologies.com|arunendranathg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:38|71.67 KB|Sent|Message for arunendranathg@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3469|eCAS_MutualFunds@manipaltechnologies.com|arunendrap@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:39|48.39 KB|Sent|Message for arunendrap@hotmail.com accepted by 52.101.8.43:25 (hotmail-com.olc.protection.outlook.com) +3470|eCAS_MutualFunds@manipaltechnologies.com|arunendrashekhartiwari1684@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:40|62.88 KB|Sent|Message for arunendrashekhartiwari1684@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3471|eCAS_MutualFunds@manipaltechnologies.com|arunendrasoni@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:42|47.8 KB|Sent|Message for arunendrasoni@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3472|eCAS_MutualFunds@manipaltechnologies.com|arunendratiwari2011@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:43|57.12 KB|Sent|Message for arunendratiwari2011@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3473|eCAS_MutualFunds@manipaltechnologies.com|arunendratiwari32@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:44|50.7 KB|Sent|Message for arunendratiwari32@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3474|eCAS_MutualFunds@manipaltechnologies.com|arunendu.k11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:45|58.42 KB|Sent|Message for arunendu.k11@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3475|eCAS_MutualFunds@manipaltechnologies.com|arunendu09@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:46|149.05 KB|Sent|Message for arunendu09@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3476|eCAS_MutualFunds@manipaltechnologies.com|arunendujha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:48|62.17 KB|Sent|Message for arunendujha@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3477|eCAS_MutualFunds@manipaltechnologies.com|arunent.mzp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:49|58.97 KB|Sent|Message for arunent.mzp@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3478|eCAS_MutualFunds@manipaltechnologies.com|arunenterprisesajm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:50|78.66 KB|Sent|Message for arunenterprisesajm@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3479|eCAS_MutualFunds@manipaltechnologies.com|arunenterprisesajm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:51|70.57 KB|Sent|Message for arunenterprisesajm@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3480|eCAS_MutualFunds@manipaltechnologies.com|arunepathade37@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:52|50.07 KB|Sent|Message for arunepathade37@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3481|eCAS_MutualFunds@manipaltechnologies.com|arunepfo@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:54|81.35 KB|Sent|Message for arunepfo@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3482|eCAS_MutualFunds@manipaltechnologies.com|arunerajak20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:55|62.24 KB|Sent|Message for arunerajak20@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3483|eCAS_MutualFunds@manipaltechnologies.com|aruneramath@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:56|55.87 KB|Sent|Message for aruneramath@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3484|eCAS_MutualFunds@manipaltechnologies.com|arunesh.vikram@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:57|72.32 KB|Sent|Message for arunesh.vikram@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3485|eCAS_MutualFunds@manipaltechnologies.com|arunesh.yadav01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:06:58|68.53 KB|Sent|Message for arunesh.yadav01@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta5.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta5.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta5.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta6.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +3486|eCAS_MutualFunds@manipaltechnologies.com|arunesh1960@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:00|67.33 KB|Sent|Message for arunesh1960@yahoo.com accepted by 67.195.228.110:25 (mta6.am0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3487|eCAS_MutualFunds@manipaltechnologies.com|arunesh287@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:01|54.31 KB|Sent|Message for arunesh287@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3488|eCAS_MutualFunds@manipaltechnologies.com|arunesh33gaurav@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:02|75.65 KB|Sent|Message for arunesh33gaurav@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3489|eCAS_MutualFunds@manipaltechnologies.com|arunesh368@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:03|63.75 KB|Sent|Message for arunesh368@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3490|eCAS_MutualFunds@manipaltechnologies.com|arunesh47pandey@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:04|48.7 KB|Sent|Message for arunesh47pandey@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3491|eCAS_MutualFunds@manipaltechnologies.com|arunesh5474@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:06|56.59 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunesh5474@gmail.com to suppression list because delivery has failed 18 times. +3492|eCAS_MutualFunds@manipaltechnologies.com|arunesh56@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:07|69.5 KB|Sent|Message for arunesh56@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +3493|eCAS_MutualFunds@manipaltechnologies.com|arunesh9415@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:08|82.43 KB|Sent|Message for arunesh9415@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3494|eCAS_MutualFunds@manipaltechnologies.com|arunesh97up@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:09|51.55 KB|Sent|Message for arunesh97up@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3495|eCAS_MutualFunds@manipaltechnologies.com|aruneshadevi36@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:11|49.71 KB|Sent|Message for aruneshadevi36@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3496|eCAS_MutualFunds@manipaltechnologies.com|aruneshashankar2222@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:12|62.3 KB|Sent|Message for aruneshashankar2222@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3497|eCAS_MutualFunds@manipaltechnologies.com|aruneshdayal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:13|76.33 KB|Sent|Message for aruneshdayal@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3498|eCAS_MutualFunds@manipaltechnologies.com|aruneshfriends@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:14|75.25 KB|Sent|Message for aruneshfriends@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3499|eCAS_MutualFunds@manipaltechnologies.com|aruneshfriends@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:16|61.42 KB|Sent|Message for aruneshfriends@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3500|eCAS_MutualFunds@manipaltechnologies.com|aruneshg345@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:17|64.39 KB|Sent|Message for aruneshg345@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3501|eCAS_MutualFunds@manipaltechnologies.com|aruneshgiri841@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:18|49.45 KB|Sent|Message for aruneshgiri841@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3502|eCAS_MutualFunds@manipaltechnologies.com|aruneshhrd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:19|51.35 KB|Sent|Message for aruneshhrd@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3503|eCAS_MutualFunds@manipaltechnologies.com|aruneshkant@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:20|75.05 KB|Sent|Message for aruneshkant@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3504|eCAS_MutualFunds@manipaltechnologies.com|aruneshkayal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:22|59.32 KB|Sent|Message for aruneshkayal@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3505|eCAS_MutualFunds@manipaltechnologies.com|aruneshkumarbbk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:23|51.6 KB|Sent|Message for aruneshkumarbbk@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta6.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta7.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta7.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3506|eCAS_MutualFunds@manipaltechnologies.com|aruneshlike@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:24|53.18 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.228.106:25 (mta7.am0.yahoodns.net) +3507|eCAS_MutualFunds@manipaltechnologies.com|aruneshm01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:25|68.76 KB|Sent|Message for aruneshm01@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3508|eCAS_MutualFunds@manipaltechnologies.com|aruneshmishra2706@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:26|99.12 KB|Sent|Message for aruneshmishra2706@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3509|eCAS_MutualFunds@manipaltechnologies.com|aruneshmukherjee613@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:28|62.31 KB|Sent|Message for aruneshmukherjee613@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3510|eCAS_MutualFunds@manipaltechnologies.com|aruneshncc59@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:29|51.66 KB|Sent|Message for aruneshncc59@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3511|eCAS_MutualFunds@manipaltechnologies.com|aruneshnewid109@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:30|64.14 KB|Sent|Message for aruneshnewid109@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3512|eCAS_MutualFunds@manipaltechnologies.com|aruneshpandey1974@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:31|61.94 KB|Sent|Message for aruneshpandey1974@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3513|eCAS_MutualFunds@manipaltechnologies.com|aruneshpandeybasti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:33|65.66 KB|Sent|Message for aruneshpandeybasti@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3514|eCAS_MutualFunds@manipaltechnologies.com|aruneshpavel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:34|56.73 KB|Sent|Message for aruneshpavel@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3515|eCAS_MutualFunds@manipaltechnologies.com|aruneshpgt@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:35|67.76 KB|Sent|Message for aruneshpgt@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3516|eCAS_MutualFunds@manipaltechnologies.com|aruneshpratapsingh479@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:36|66.48 KB|Sent|Message for aruneshpratapsingh479@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3517|eCAS_MutualFunds@manipaltechnologies.com|aruneshsaxena1992@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:37|58.65 KB|Sent|Message for aruneshsaxena1992@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3518|eCAS_MutualFunds@manipaltechnologies.com|aruneshsdr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:39|62.32 KB|Sent|Message for aruneshsdr@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3519|eCAS_MutualFunds@manipaltechnologies.com|aruneshsoni580@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:40|52.54 KB|Sent|Message for aruneshsoni580@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3520|eCAS_MutualFunds@manipaltechnologies.com|aruneshtyagi89@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:41|60.06 KB|Sent|Message for aruneshtyagi89@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3521|eCAS_MutualFunds@manipaltechnologies.com|aruneshv84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:42|66.47 KB|Sent|Message for aruneshv84@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3522|eCAS_MutualFunds@manipaltechnologies.com|aruneshverma0@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:43|51.26 KB|Sent|Message for aruneshverma0@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3523|eCAS_MutualFunds@manipaltechnologies.com|aruneshwararun2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:45|53.83 KB|Sent|Message for aruneshwararun2@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3524|eCAS_MutualFunds@manipaltechnologies.com|arunetcltd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:46|62.89 KB|Sent|Message for arunetcltd@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3525|eCAS_MutualFunds@manipaltechnologies.com|arunevane3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:47|50.07 KB|Sent|Message for arunevane3@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3526|eCAS_MutualFunds@manipaltechnologies.com|arunevasve8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:48|50.62 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3527|eCAS_MutualFunds@manipaltechnologies.com|arunevergreentoolscbe@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:49|52.81 KB|Sent|Message for arunevergreentoolscbe@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3528|eCAS_MutualFunds@manipaltechnologies.com|arunext@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:51|51.42 KB|Sent|Message for arunext@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3529|eCAS_MutualFunds@manipaltechnologies.com|arunfadikar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:52|72.55 KB|Sent|Message for arunfadikar@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3530|eCAS_MutualFunds@manipaltechnologies.com|arunfb09@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:53|50.64 KB|Sent|Message for arunfb09@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3531|eCAS_MutualFunds@manipaltechnologies.com|arunferoke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:54|53.63 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunferoke@gmail.com to suppression list because delivery has failed 18 times. +3532|eCAS_MutualFunds@manipaltechnologies.com|arunfgg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:55|68.09 KB|Sent|Message for arunfgg@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3533|eCAS_MutualFunds@manipaltechnologies.com|arunfiesta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:57|72.35 KB|Sent|Message for arunfiesta@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3534|eCAS_MutualFunds@manipaltechnologies.com|arunfirstnamekumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:58|48.51 KB|Sent|Message for arunfirstnamekumar@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta7.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta5.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta6.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta6.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta7.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +3535|eCAS_MutualFunds@manipaltechnologies.com|arunflake@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:07:59|54.71 KB|Sent|Message for arunflake@yahoo.com accepted by 98.136.96.74:25 (mta5.am0.yahoodns.net) +3536|eCAS_MutualFunds@manipaltechnologies.com|arunflashos@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:00|68.53 KB|Sent|Message for arunflashos@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3537|eCAS_MutualFunds@manipaltechnologies.com|arunfranklynn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:01|60.52 KB|Sent|Message for arunfranklynn@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3538|eCAS_MutualFunds@manipaltechnologies.com|arunfrt@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:03|58.28 KB|Sent|Message for arunfrt@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3539|eCAS_MutualFunds@manipaltechnologies.com|arunfuel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:04|78.64 KB|Sent|Message for arunfuel@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3540|eCAS_MutualFunds@manipaltechnologies.com|arung.paravoor@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:05|57.87 KB|Sent|Message for arung.paravoor@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3541|eCAS_MutualFunds@manipaltechnologies.com|arung247@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:06|67.34 KB|Sent|Message for arung247@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3542|eCAS_MutualFunds@manipaltechnologies.com|arung2626@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:07|57.23 KB|Sent|Message for arung2626@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3543|eCAS_MutualFunds@manipaltechnologies.com|arung2645@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:09|56.63 KB|Sent|Message for arung2645@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3544|eCAS_MutualFunds@manipaltechnologies.com|arung@entolabs.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:10|81.52 KB|Sent|Message for arung@entolabs.in accepted by 92.204.80.0:25 (smtp.secureserver.net) +3545|eCAS_MutualFunds@manipaltechnologies.com|arung@niper.ac.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:11|57.7 KB|Sent|Temporary SMTP delivery error when sending to 14.139.57.40:25 (mail3.niper.ac.in) +3545|eCAS_MutualFunds@manipaltechnologies.com|arung@niper.ac.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:11|57.7 KB|Sent|Message for arung@niper.ac.in accepted by 14.139.57.40:25 (mail3.niper.ac.in) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta7.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta5.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +3546|eCAS_MutualFunds@manipaltechnologies.com|arung_gandhi24@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:12|52.08 KB|Sent|Message for arung_gandhi24@yahoo.com accepted by 98.136.96.74:25 (mta5.am0.yahoodns.net) +3547|eCAS_MutualFunds@manipaltechnologies.com|arungadekar03@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:13|67.2 KB|Sent|Message for arungadekar03@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3548|eCAS_MutualFunds@manipaltechnologies.com|arungadhe1122@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:15|70.6 KB|Sent|Message for arungadhe1122@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3549|eCAS_MutualFunds@manipaltechnologies.com|arungagan1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:16|62.29 KB|Sent|Message for arungagan1@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3550|eCAS_MutualFunds@manipaltechnologies.com|arungahalot06@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:17|64.56 KB|Sent|Message for arungahalot06@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3551|eCAS_MutualFunds@manipaltechnologies.com|arungahlawat420@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:18|49.63 KB|Sent|Message for arungahlawat420@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3552|eCAS_MutualFunds@manipaltechnologies.com|arungaikar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:19|54.48 KB|Sent|Message for arungaikar@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3553|eCAS_MutualFunds@manipaltechnologies.com|arungaikar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:20|54.19 KB|Sent|Message for arungaikar@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta6.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta5.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +3554|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:22|62.61 KB|Sent|Message for arungaikwad123@yahoo.com accepted by 98.136.96.74:25 (mta5.am0.yahoodns.net) +3555|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad192@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:23|79.66 KB|Sent|Message for arungaikwad192@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3556|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad366@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:24|60.46 KB|Sent|Message for arungaikwad366@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3557|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad6699@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:25|88.53 KB|Sent|Message for arungaikwad6699@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3558|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad6699@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:26|56.78 KB|Sent|Message for arungaikwad6699@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3559|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:28|55.15 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arungaikwad73@gmail.com to suppression list because delivery has failed 18 times. +3560|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad882@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:29|58.53 KB|Sent|Message for arungaikwad882@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3561|eCAS_MutualFunds@manipaltechnologies.com|arungaikwad_2008@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:30|77.72 KB|Sent|Message for arungaikwad_2008@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +3562|eCAS_MutualFunds@manipaltechnologies.com|arungain2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:31|65.17 KB|Sent|Message for arungain2@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3563|eCAS_MutualFunds@manipaltechnologies.com|arungairola1008@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:32|51.61 KB|Sent|Message for arungairola1008@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3564|eCAS_MutualFunds@manipaltechnologies.com|arungajbhiye009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:33|51.86 KB|Sent|Message for arungajbhiye009@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3565|eCAS_MutualFunds@manipaltechnologies.com|arungajbhiye68@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:35|51.95 KB|Sent|Message for arungajbhiye68@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3566|eCAS_MutualFunds@manipaltechnologies.com|arungajjala86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:36|58.44 KB|Sent|Message for arungajjala86@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3567|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:37|62.09 KB|Sent|Message for arungalaisv@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3568|eCAS_MutualFunds@manipaltechnologies.com|arungalaisv@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:38|73.25 KB|Sent|Message for arungalaisv@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3569|eCAS_MutualFunds@manipaltechnologies.com|arungali.kumar46@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:39|58.19 KB|Sent|Message for arungali.kumar46@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3570|eCAS_MutualFunds@manipaltechnologies.com|arungalphade2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:41|66.86 KB|Sent|Message for arungalphade2017@gmail.com accepted by 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3571|eCAS_MutualFunds@manipaltechnologies.com|arunganchil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:42|58.6 KB|Sent|Message for arunganchil@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3572|eCAS_MutualFunds@manipaltechnologies.com|arungandhi302@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:43|47.38 KB|Sent|Message for arungandhi302@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3573|eCAS_MutualFunds@manipaltechnologies.com|arungandhi46@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:44|61.25 KB|Sent|Message for arungandhi46@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3574|eCAS_MutualFunds@manipaltechnologies.com|arunganer@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:45|57.84 KB|Sent|Message for arunganer@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3575|eCAS_MutualFunds@manipaltechnologies.com|arunganesan03@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:47|71.91 KB|Sent|Message for arunganesan03@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3576|eCAS_MutualFunds@manipaltechnologies.com|arungangwar.kiet@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:48|49.18 KB|Sent|Message for arungangwar.kiet@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3577|eCAS_MutualFunds@manipaltechnologies.com|arungangwat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:49|70.5 KB|Sent|Message for arungangwat@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3578|eCAS_MutualFunds@manipaltechnologies.com|arunganjam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:50|59.14 KB|Sent|Message for arunganjam@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3579|eCAS_MutualFunds@manipaltechnologies.com|arungaond@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:51|60.14 KB|Sent|Message for arungaond@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3580|eCAS_MutualFunds@manipaltechnologies.com|arungaonkar128@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:53|65.15 KB|Sent|Message for arungaonkar128@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3581|eCAS_MutualFunds@manipaltechnologies.com|arungaraiammanagencies2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:54|57.09 KB|Sent|Message for arungaraiammanagencies2017@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3582|eCAS_MutualFunds@manipaltechnologies.com|arungarg.cs@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:55|78.09 KB|Sent|Message for arungarg.cs@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3583|eCAS_MutualFunds@manipaltechnologies.com|arungarg14aug@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:56|67.55 KB|Sent|Message for arungarg14aug@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3584|eCAS_MutualFunds@manipaltechnologies.com|arungarg3112@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:57|56.97 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arungarg3112@gmail.com to suppression list because delivery has failed 18 times. +3585|eCAS_MutualFunds@manipaltechnologies.com|arungarg3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:08:59|77.75 KB|Sent|Message for arungarg3@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3586|eCAS_MutualFunds@manipaltechnologies.com|arungarg473@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:00|57.08 KB|Sent|Message for arungarg473@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3587|eCAS_MutualFunds@manipaltechnologies.com|arungarg815@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:01|62.33 KB|Sent|Message for arungarg815@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3588|eCAS_MutualFunds@manipaltechnologies.com|arungarg99880@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:02|67.73 KB|Sent|Message for arungarg99880@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3589|eCAS_MutualFunds@manipaltechnologies.com|arungargh101@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:03|77.7 KB|Sent|Message for arungargh101@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3590|eCAS_MutualFunds@manipaltechnologies.com|arungargi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:05|51.29 KB|Sent|Message for arungargi@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3591|eCAS_MutualFunds@manipaltechnologies.com|arungargkosi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:06|65.42 KB|Sent|Message for arungargkosi@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3592|eCAS_MutualFunds@manipaltechnologies.com|arungargmj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:07|65.98 KB|Sent|Message for arungargmj@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3593|eCAS_MutualFunds@manipaltechnologies.com|arungargya@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:08|65.86 KB|Sent|Message for arungargya@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3594|eCAS_MutualFunds@manipaltechnologies.com|arungarud0007@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:09|64.98 KB|Sent|Message for arungarud0007@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3595|eCAS_MutualFunds@manipaltechnologies.com|arungastech@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:11|55.04 KB|Sent|Message for arungastech@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3596|eCAS_MutualFunds@manipaltechnologies.com|arungattawar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:12|51.81 KB|Sent|Message for arungattawar@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3597|eCAS_MutualFunds@manipaltechnologies.com|arungaur2345@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:13|66.0 KB|Sent|Message for arungaur2345@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3598|eCAS_MutualFunds@manipaltechnologies.com|arungaur3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:14|61.65 KB|Sent|Message for arungaur3@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3599|eCAS_MutualFunds@manipaltechnologies.com|arungaurang28@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:15|61.86 KB|Sent|Message for arungaurang28@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3600|eCAS_MutualFunds@manipaltechnologies.com|arungautam00@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:16|50.58 KB|Sent|Message for arungautam00@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3601|eCAS_MutualFunds@manipaltechnologies.com|arungautam12345@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:18|55.79 KB|Sent|Message for arungautam12345@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3602|eCAS_MutualFunds@manipaltechnologies.com|arungautam1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:19|75.98 KB|Sent|Message for arungautam1985@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3603|eCAS_MutualFunds@manipaltechnologies.com|arungautam1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:20|95.13 KB|Sent|Message for arungautam1985@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3604|eCAS_MutualFunds@manipaltechnologies.com|arungautam1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:21|48.22 KB|Sent|Message for arungautam1985@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3605|eCAS_MutualFunds@manipaltechnologies.com|arungautam7711@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:22|54.44 KB|Sent|Message for arungautam7711@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3606|eCAS_MutualFunds@manipaltechnologies.com|arungautam87@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:24|66.38 KB|Sent|Message for arungautam87@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3607|eCAS_MutualFunds@manipaltechnologies.com|arungautamji000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:25|51.21 KB|Sent|Message for arungautamji000@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3608|eCAS_MutualFunds@manipaltechnologies.com|arungavali25041975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:26|49.13 KB|HardFail|Permanent SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3609|eCAS_MutualFunds@manipaltechnologies.com|arungawade1936@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:27|67.9 KB|Sent|Message for arungawade1936@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3610|eCAS_MutualFunds@manipaltechnologies.com|arungawand213@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:28|48.36 KB|Sent|Message for arungawand213@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3611|eCAS_MutualFunds@manipaltechnologies.com|arungawas0858@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:30|55.48 KB|Sent|Message for arungawas0858@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3612|eCAS_MutualFunds@manipaltechnologies.com|arungawas124@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:31|66.21 KB|Sent|Message for arungawas124@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3613|eCAS_MutualFunds@manipaltechnologies.com|arungayen565@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:32|71.34 KB|Sent|Message for arungayen565@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3614|eCAS_MutualFunds@manipaltechnologies.com|arungayen84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:33|57.4 KB|Sent|Message for arungayen84@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3615|eCAS_MutualFunds@manipaltechnologies.com|arungb.ak59@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:34|68.28 KB|Sent|Message for arungb.ak59@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3616|eCAS_MutualFunds@manipaltechnologies.com|arungbaheti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:36|66.58 KB|Sent|Message for arungbaheti@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3617|eCAS_MutualFunds@manipaltechnologies.com|arungc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:37|65.46 KB|Sent|Message for arungc@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta7.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta5.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta5.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta7.am0.yahoodns.net) +3618|eCAS_MutualFunds@manipaltechnologies.com|arungcs@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:38|61.24 KB|Sent|Message for arungcs@yahoo.com accepted by 98.136.96.74:25 (mta7.am0.yahoodns.net) +3619|eCAS_MutualFunds@manipaltechnologies.com|arungctit@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:39|55.67 KB|Sent|Message for arungctit@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3620|eCAS_MutualFunds@manipaltechnologies.com|arungdc1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:40|81.25 KB|Sent|Message for arungdc1967@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3621|eCAS_MutualFunds@manipaltechnologies.com|arungdc1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:42|80.72 KB|Sent|Message for arungdc1967@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3622|eCAS_MutualFunds@manipaltechnologies.com|arunge123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:43|63.42 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3623|eCAS_MutualFunds@manipaltechnologies.com|arunge86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:44|51.2 KB|Sent|Message for arunge86@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3624|eCAS_MutualFunds@manipaltechnologies.com|arungedam22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:45|61.56 KB|Sent|Message for arungedam22@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3625|eCAS_MutualFunds@manipaltechnologies.com|arungeetha1996@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:46|65.53 KB|Sent|Message for arungeetha1996@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta5.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta5.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta6.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta5.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta5.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta5.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta5.am0.yahoodns.net) +3626|eCAS_MutualFunds@manipaltechnologies.com|arungeeti@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:48|69.26 KB|Sent|Message for arungeeti@yahoo.com accepted by 98.136.96.75:25 (mta5.am0.yahoodns.net) +3627|eCAS_MutualFunds@manipaltechnologies.com|arungem777@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:49|49.12 KB|Sent|Message for arungem777@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3628|eCAS_MutualFunds@manipaltechnologies.com|arungeorg87@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:50|88.06 KB|Sent|Message for arungeorg87@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3629|eCAS_MutualFunds@manipaltechnologies.com|arungeorge001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:51|57.23 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arungeorge001@gmail.com to suppression list because delivery has failed 18 times. +3630|eCAS_MutualFunds@manipaltechnologies.com|arungeorgeantony@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:52|70.69 KB|Sent|Message for arungeorgeantony@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3631|eCAS_MutualFunds@manipaltechnologies.com|arungeorgecsl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:53|58.71 KB|Sent|Message for arungeorgecsl@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3632|eCAS_MutualFunds@manipaltechnologies.com|arungera2013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:55|58.02 KB|Sent|Message for arungera2013@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3633|eCAS_MutualFunds@manipaltechnologies.com|arungera868686@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:56|52.89 KB|Sent|Message for arungera868686@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3634|eCAS_MutualFunds@manipaltechnologies.com|arungevra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:57|60.09 KB|Sent|Message for arungevra@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3635|eCAS_MutualFunds@manipaltechnologies.com|arungg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:58|71.02 KB|Sent|Message for arungg@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3636|eCAS_MutualFunds@manipaltechnologies.com|arunggn001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:09:59|89.03 KB|Sent|Message for arunggn001@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3637|eCAS_MutualFunds@manipaltechnologies.com|arunghag3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:01|50.42 KB|Sent|Message for arunghag3@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3638|eCAS_MutualFunds@manipaltechnologies.com|arunghandat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:02|70.89 KB|Sent|Message for arunghandat@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3639|eCAS_MutualFunds@manipaltechnologies.com|arunghanekar007@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:03|68.48 KB|Sent|Message for arunghanekar007@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3640|eCAS_MutualFunds@manipaltechnologies.com|arungharat59@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:04|62.58 KB|Sent|Message for arungharat59@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3641|eCAS_MutualFunds@manipaltechnologies.com|arunghate21@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:05|62.25 KB|Sent|Message for arunghate21@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3642|eCAS_MutualFunds@manipaltechnologies.com|arunghatol94@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:07|66.27 KB|Sent|Message for arunghatol94@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3643|eCAS_MutualFunds@manipaltechnologies.com|arunghora1972@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:08|59.44 KB|Sent|Message for arunghora1972@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3644|eCAS_MutualFunds@manipaltechnologies.com|arunghorai579@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:09|75.8 KB|Sent|Message for arunghorai579@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3645|eCAS_MutualFunds@manipaltechnologies.com|arunghosg700@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:10|55.97 KB|Sent|Message for arunghosg700@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3646|eCAS_MutualFunds@manipaltechnologies.com|arunghosh.india@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:11|57.92 KB|Sent|Message for arunghosh.india@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3647|eCAS_MutualFunds@manipaltechnologies.com|arunghosh004@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:13|58.47 KB|Sent|Message for arunghosh004@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3648|eCAS_MutualFunds@manipaltechnologies.com|arunghosh111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:14|52.32 KB|Sent|Message for arunghosh111@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3649|eCAS_MutualFunds@manipaltechnologies.com|arunghosh131@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:15|51.43 KB|Sent|Message for arunghosh131@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3650|eCAS_MutualFunds@manipaltechnologies.com|arunghosh17403@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:16|61.6 KB|Sent|Message for arunghosh17403@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3651|eCAS_MutualFunds@manipaltechnologies.com|arunghosh20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:17|53.82 KB|Sent|Message for arunghosh20@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3652|eCAS_MutualFunds@manipaltechnologies.com|arunghosh487@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:19|60.6 KB|Sent|Message for arunghosh487@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3653|eCAS_MutualFunds@manipaltechnologies.com|arunghosh66@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:20|60.86 KB|Sent|Message for arunghosh66@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3654|eCAS_MutualFunds@manipaltechnologies.com|arunghosh707@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:21|69.64 KB|Sent|Message for arunghosh707@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3655|eCAS_MutualFunds@manipaltechnologies.com|arunghosh942@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:22|77.62 KB|Sent|Message for arunghosh942@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3656|eCAS_MutualFunds@manipaltechnologies.com|arunghosh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:23|61.57 KB|Sent|Message for arunghosh@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3657|eCAS_MutualFunds@manipaltechnologies.com|arunghosh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:25|74.83 KB|Sent|Message for arunghosh@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3658|eCAS_MutualFunds@manipaltechnologies.com|arunghoshbijara@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:26|69.05 KB|Sent|Message for arunghoshbijara@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3659|eCAS_MutualFunds@manipaltechnologies.com|arunghumka555@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:27|54.85 KB|Sent|Message for arunghumka555@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3660|eCAS_MutualFunds@manipaltechnologies.com|arungiri0581@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:28|80.01 KB|Sent|Message for arungiri0581@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3661|eCAS_MutualFunds@manipaltechnologies.com|arungiri1201@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:29|50.58 KB|Sent|Message for arungiri1201@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3662|eCAS_MutualFunds@manipaltechnologies.com|arungiri1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:30|60.42 KB|Sent|Message for arungiri1234@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta7.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta7.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta5.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta5.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +3663|eCAS_MutualFunds@manipaltechnologies.com|arungiri123@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:32|65.66 KB|Sent|Message for arungiri123@yahoo.com accepted by 98.136.96.75:25 (mta5.am0.yahoodns.net) +3664|eCAS_MutualFunds@manipaltechnologies.com|arungiri160@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:33|87.19 KB|Sent|Message for arungiri160@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3665|eCAS_MutualFunds@manipaltechnologies.com|arungiri1947@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:34|73.0 KB|Sent|Message for arungiri1947@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3666|eCAS_MutualFunds@manipaltechnologies.com|arungiri35@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:35|57.42 KB|Sent|Message for arungiri35@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3667|eCAS_MutualFunds@manipaltechnologies.com|arungiri456@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:36|50.21 KB|Sent|Message for arungiri456@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +3668|eCAS_MutualFunds@manipaltechnologies.com|arungiri78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:38|58.38 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arungiri78@gmail.com to suppression list because delivery has failed 18 times. +3669|eCAS_MutualFunds@manipaltechnologies.com|arungiri9000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:39|60.96 KB|Sent|Message for arungiri9000@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3670|eCAS_MutualFunds@manipaltechnologies.com|arungirigauswami4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:40|53.6 KB|Sent|Message for arungirigauswami4@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3671|eCAS_MutualFunds@manipaltechnologies.com|arungirigauswami4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:41|60.34 KB|Sent|Message for arungirigauswami4@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta5.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta7.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta5.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta5.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +3672|eCAS_MutualFunds@manipaltechnologies.com|arungiriyapur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:42|88.36 KB|Sent|Message for arungiriyapur@yahoo.com accepted by 98.136.96.75:25 (mta5.am0.yahoodns.net) +3673|eCAS_MutualFunds@manipaltechnologies.com|arungirl85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:44|62.97 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3674|eCAS_MutualFunds@manipaltechnologies.com|arungiry6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:45|75.73 KB|Sent|Message for arungiry6@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3675|eCAS_MutualFunds@manipaltechnologies.com|arungkadam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:46|53.32 KB|Sent|Message for arungkadam@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3676|eCAS_MutualFunds@manipaltechnologies.com|arungknair@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:47|71.61 KB|Sent|Message for arungknair@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3677|eCAS_MutualFunds@manipaltechnologies.com|arungkorba@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:48|83.69 KB|Sent|Message for arungkorba@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3678|eCAS_MutualFunds@manipaltechnologies.com|arungkorba@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:50|61.04 KB|Sent|Message for arungkorba@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3679|eCAS_MutualFunds@manipaltechnologies.com|arungkpsrivastav@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:51|72.38 KB|Sent|Message for arungkpsrivastav@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3680|eCAS_MutualFunds@manipaltechnologies.com|arungkwd5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:52|66.45 KB|Sent|Message for arungkwd5@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3681|eCAS_MutualFunds@manipaltechnologies.com|arungladwin@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:53|61.8 KB|Sent|Message for arungladwin@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3682|eCAS_MutualFunds@manipaltechnologies.com|arungm1212@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:54|65.32 KB|Sent|Message for arungm1212@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3683|eCAS_MutualFunds@manipaltechnologies.com|arungm6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:56|69.63 KB|Sent|Message for arungm6@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3684|eCAS_MutualFunds@manipaltechnologies.com|arungnaik627@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:57|55.95 KB|Sent|Message for arungnaik627@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3685|eCAS_MutualFunds@manipaltechnologies.com|arungnair7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:58|47.98 KB|Sent|Message for arungnair7@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3686|eCAS_MutualFunds@manipaltechnologies.com|arungnath@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:10:59|61.15 KB|Sent|Message for arungnath@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3687|eCAS_MutualFunds@manipaltechnologies.com|arungoel1956@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:00|56.28 KB|Sent|Message for arungoel1956@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3688|eCAS_MutualFunds@manipaltechnologies.com|arungoel52@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:01|67.65 KB|Sent|Message for arungoel52@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +3689|eCAS_MutualFunds@manipaltechnologies.com|arungoel777@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:03|58.57 KB|Sent|Message for arungoel777@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3690|eCAS_MutualFunds@manipaltechnologies.com|arungoelhappy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:04|65.79 KB|Sent|Message for arungoelhappy@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta5.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta6.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta6.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta7.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta7.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta5.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta6.am0.yahoodns.net) +3691|eCAS_MutualFunds@manipaltechnologies.com|arungoga@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:05|51.42 KB|Sent|Message for arungoga@yahoo.com accepted by 98.136.96.74:25 (mta5.am0.yahoodns.net) +3692|eCAS_MutualFunds@manipaltechnologies.com|arungogia33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:06|61.96 KB|Sent|Message for arungogia33@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3693|eCAS_MutualFunds@manipaltechnologies.com|arungogoi164@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:07|57.77 KB|Sent|Message for arungogoi164@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3694|eCAS_MutualFunds@manipaltechnologies.com|arungogoi359@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:09|58.09 KB|Sent|Message for arungogoi359@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3695|eCAS_MutualFunds@manipaltechnologies.com|arungogoi828@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:10|65.54 KB|Sent|Message for arungogoi828@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3696|eCAS_MutualFunds@manipaltechnologies.com|arungogoi8791@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:11|51.89 KB|Sent|Message for arungogoi8791@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3697|eCAS_MutualFunds@manipaltechnologies.com|arungola1986@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:12|57.63 KB|Sent|Message for arungola1986@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3698|eCAS_MutualFunds@manipaltechnologies.com|arungolden_radan@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:13|75.57 KB|Sent|Message for arungolden_radan@hotmail.com accepted by 52.101.68.17:25 (hotmail-com.olc.protection.outlook.com) +3699|eCAS_MutualFunds@manipaltechnologies.com|arungolfy@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:15|73.92 KB|Sent|Message for arungolfy@hotmail.com accepted by 52.101.41.57:25 (hotmail-com.olc.protection.outlook.com) +3700|eCAS_MutualFunds@manipaltechnologies.com|arungond655@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:16|57.54 KB|Sent|Message for arungond655@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3701|eCAS_MutualFunds@manipaltechnologies.com|arungood.try@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:17|51.82 KB|Sent|Message for arungood.try@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3702|eCAS_MutualFunds@manipaltechnologies.com|arungopal.27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:18|65.36 KB|Sent|Message for arungopal.27@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta6.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta7.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta5.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta6.am0.yahoodns.net) +3703|eCAS_MutualFunds@manipaltechnologies.com|arungopal_80@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:19|63.19 KB|Sent|Message for arungopal_80@yahoo.com accepted by 98.136.96.74:25 (mta5.am0.yahoodns.net) +3704|eCAS_MutualFunds@manipaltechnologies.com|arungopalakrishnan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:20|66.43 KB|Sent|Message for arungopalakrishnan@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3705|eCAS_MutualFunds@manipaltechnologies.com|arungopalbl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:22|129.48 KB|Sent|Message for arungopalbl@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3706|eCAS_MutualFunds@manipaltechnologies.com|arungope1133@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:23|52.43 KB|Sent|Message for arungope1133@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3707|eCAS_MutualFunds@manipaltechnologies.com|arungope442211@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:24|65.16 KB|Sent|Message for arungope442211@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3708|eCAS_MutualFunds@manipaltechnologies.com|arungopi.net@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:25|66.41 KB|Sent|Message for arungopi.net@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3709|eCAS_MutualFunds@manipaltechnologies.com|arungorain123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:26|58.14 KB|Sent|Message for arungorain123@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3710|eCAS_MutualFunds@manipaltechnologies.com|arungorain123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:28|70.66 KB|Sent|Message for arungorain123@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3711|eCAS_MutualFunds@manipaltechnologies.com|arungore222333@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:29|51.88 KB|Sent|Message for arungore222333@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3712|eCAS_MutualFunds@manipaltechnologies.com|arungorebegampura777@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:30|61.39 KB|Sent|Message for arungorebegampura777@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3713|eCAS_MutualFunds@manipaltechnologies.com|arungorh2015@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:31|51.21 KB|Sent|Message for arungorh2015@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3714|eCAS_MutualFunds@manipaltechnologies.com|arungorle4769@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:32|58.9 KB|Sent|Message for arungorle4769@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3715|eCAS_MutualFunds@manipaltechnologies.com|arungosai31@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:34|76.61 KB|Sent|Message for arungosai31@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3716|eCAS_MutualFunds@manipaltechnologies.com|arungosavi300@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:35|48.58 KB|Sent|Message for arungosavi300@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3717|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:36|82.21 KB|Sent|Message for arungoswami123@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3718|eCAS_MutualFunds@manipaltechnologies.com|arungoswami123@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:37|77.36 KB|Sent|Message for arungoswami123@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3719|eCAS_MutualFunds@manipaltechnologies.com|arungoswami1961@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:38|52.27 KB|Sent|Message for arungoswami1961@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3720|eCAS_MutualFunds@manipaltechnologies.com|arungoswami3@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:40|62.37 KB|Sent|Message for arungoswami3@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3721|eCAS_MutualFunds@manipaltechnologies.com|arungoswami88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:41|58.72 KB|Sent|Message for arungoswami88@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3722|eCAS_MutualFunds@manipaltechnologies.com|arungoswamihojai@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:42|59.83 KB|Sent|Message for arungoswamihojai@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3723|eCAS_MutualFunds@manipaltechnologies.com|arungoswani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:43|67.51 KB|Sent|Message for arungoswani@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3724|eCAS_MutualFunds@manipaltechnologies.com|arungoud.ande@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:44|47.99 KB|Sent|Message for arungoud.ande@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3725|eCAS_MutualFunds@manipaltechnologies.com|arungoud266@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:45|57.08 KB|Sent|Message for arungoud266@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3726|eCAS_MutualFunds@manipaltechnologies.com|arungoud266@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:47|57.57 KB|Sent|Message for arungoud266@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3727|eCAS_MutualFunds@manipaltechnologies.com|arungoud5014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:48|50.68 KB|Sent|Message for arungoud5014@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3728|eCAS_MutualFunds@manipaltechnologies.com|arungouda3278@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:49|55.94 KB|Sent|Message for arungouda3278@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3729|eCAS_MutualFunds@manipaltechnologies.com|arungounder1982@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:50|53.4 KB|Sent|Message for arungounder1982@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3730|eCAS_MutualFunds@manipaltechnologies.com|arungoutom@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:51|49.67 KB|Sent|Message for arungoutom@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3731|eCAS_MutualFunds@manipaltechnologies.com|arungowda.14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:53|55.36 KB|Sent|Message for arungowda.14@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3732|eCAS_MutualFunds@manipaltechnologies.com|arungowda1207@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:54|50.39 KB|Sent|Message for arungowda1207@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3733|eCAS_MutualFunds@manipaltechnologies.com|arungowda288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:55|65.35 KB|Sent|Message for arungowda288@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3734|eCAS_MutualFunds@manipaltechnologies.com|arungowda8095806759@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:56|56.3 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3735|eCAS_MutualFunds@manipaltechnologies.com|arungowdamn80@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:57|50.25 KB|Sent|Message for arungowdamn80@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3736|eCAS_MutualFunds@manipaltechnologies.com|arungowthamn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:11:59|52.71 KB|Sent|Message for arungowthamn@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3737|eCAS_MutualFunds@manipaltechnologies.com|arungoyal0101@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:00|53.32 KB|Sent|Message for arungoyal0101@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3738|eCAS_MutualFunds@manipaltechnologies.com|arungoyal139@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:01|70.66 KB|Sent|Message for arungoyal139@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3739|eCAS_MutualFunds@manipaltechnologies.com|arungoyal13@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:02|92.18 KB|Sent|Message for arungoyal13@yahoo.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3740|eCAS_MutualFunds@manipaltechnologies.com|arungoyal143@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:03|59.15 KB|Sent|Message for arungoyal143@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3741|eCAS_MutualFunds@manipaltechnologies.com|arungoyal28.8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:04|66.41 KB|Sent|Message for arungoyal28.8@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3742|eCAS_MutualFunds@manipaltechnologies.com|arungoyal585.ah@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:06|49.01 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3743|eCAS_MutualFunds@manipaltechnologies.com|arungoyal714ue@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:07|64.34 KB|Sent|Message for arungoyal714ue@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3744|eCAS_MutualFunds@manipaltechnologies.com|arungoyal74@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:08|62.44 KB|Sent|Message for arungoyal74@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3745|eCAS_MutualFunds@manipaltechnologies.com|arungoyal9307@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:09|56.14 KB|Sent|Message for arungoyal9307@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3746|eCAS_MutualFunds@manipaltechnologies.com|arungoyalherbalife@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:10|50.74 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arungoyalherbalife@gmail.com to suppression list because delivery has failed 18 times. +3747|eCAS_MutualFunds@manipaltechnologies.com|arungpatil88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:12|52.02 KB|Sent|Message for arungpatil88@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3748|eCAS_MutualFunds@manipaltechnologies.com|arungpt268@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:13|54.19 KB|Sent|Message for arungpt268@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3749|eCAS_MutualFunds@manipaltechnologies.com|arungpt78@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:14|65.23 KB|Sent|Message for arungpt78@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3750|eCAS_MutualFunds@manipaltechnologies.com|arungpt79@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:15|69.01 KB|Sent|Message for arungpt79@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3751|eCAS_MutualFunds@manipaltechnologies.com|arungpt90@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:16|63.88 KB|Sent|Message for arungpt90@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3752|eCAS_MutualFunds@manipaltechnologies.com|arungpujari93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:18|56.14 KB|Sent|Message for arungpujari93@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3753|eCAS_MutualFunds@manipaltechnologies.com|arungr82@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:19|50.54 KB|Sent|Message for arungr82@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3754|eCAS_MutualFunds@manipaltechnologies.com|arungrneeraj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:20|55.95 KB|Sent|Message for arungrneeraj@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta7.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta7.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta5.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3755|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:21|64.74 KB|Sent|Message for arungrover@yahoo.com accepted by 98.136.96.75:25 (mta5.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta7.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta7.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3756|eCAS_MutualFunds@manipaltechnologies.com|arungrover@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:22|60.08 KB|Sent|Message for arungrover@yahoo.com accepted by 98.136.96.75:25 (mta5.am0.yahoodns.net) +3757|eCAS_MutualFunds@manipaltechnologies.com|arungsawant5658@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:24|59.77 KB|Sent|Message for arungsawant5658@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta7.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3758|eCAS_MutualFunds@manipaltechnologies.com|arungsharmag@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:25|55.38 KB|Sent|Message for arungsharmag@yahoo.com accepted by 98.136.96.75:25 (mta5.am0.yahoodns.net) +3759|eCAS_MutualFunds@manipaltechnologies.com|arungta.ce@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:26|69.98 KB|Sent|Message for arungta.ce@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3760|eCAS_MutualFunds@manipaltechnologies.com|arungta007@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:27|66.4 KB|Sent|Message for arungta007@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3761|eCAS_MutualFunds@manipaltechnologies.com|arungtarde1996@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:28|58.04 KB|Sent|Message for arungtarde1996@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3762|eCAS_MutualFunds@manipaltechnologies.com|arungud@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:30|61.7 KB|Sent|Message for arungud@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3763|eCAS_MutualFunds@manipaltechnologies.com|arunguha309@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:31|57.08 KB|Sent|Message for arunguha309@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3764|eCAS_MutualFunds@manipaltechnologies.com|arunguha57@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:32|66.23 KB|Sent|Message for arunguha57@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3765|eCAS_MutualFunds@manipaltechnologies.com|arunguha79@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:33|65.61 KB|Sent|Message for arunguha79@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3766|eCAS_MutualFunds@manipaltechnologies.com|arunguha8731@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:34|66.87 KB|Sent|Message for arunguha8731@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3767|eCAS_MutualFunds@manipaltechnologies.com|arunguin03712@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:35|58.29 KB|Sent|Message for arunguin03712@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3768|eCAS_MutualFunds@manipaltechnologies.com|arungujjar1486@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:37|70.57 KB|Sent|Message for arungujjar1486@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3769|eCAS_MutualFunds@manipaltechnologies.com|arungulati100@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:38|62.57 KB|Sent|Message for arungulati100@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3770|eCAS_MutualFunds@manipaltechnologies.com|arungulati79@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:39|77.55 KB|Sent|Message for arungulati79@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3771|eCAS_MutualFunds@manipaltechnologies.com|arunguleria@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:40|57.69 KB|Sent|Message for arunguleria@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3772|eCAS_MutualFunds@manipaltechnologies.com|arungulhane@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:41|51.48 KB|Sent|Message for arungulhane@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3773|eCAS_MutualFunds@manipaltechnologies.com|arungumber1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:43|82.11 KB|Sent|Message for arungumber1234@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta7.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3774|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:44|94.44 KB|Sent|Message for arungunam@yahoo.com accepted by 98.136.96.75:25 (mta5.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta7.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta5.am0.yahoodns.net) +3775|eCAS_MutualFunds@manipaltechnologies.com|arungunam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:45|59.95 KB|Sent|Message for arungunam@yahoo.com accepted by 67.195.228.109:25 (mta5.am0.yahoodns.net) +3776|eCAS_MutualFunds@manipaltechnologies.com|arungundekar1982@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:46|52.22 KB|Sent|Message for arungundekar1982@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3777|eCAS_MutualFunds@manipaltechnologies.com|arungupt1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:47|71.97 KB|Sent|Message for arungupt1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3778|eCAS_MutualFunds@manipaltechnologies.com|arungupt851@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:49|61.21 KB|Sent|Message for arungupt851@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3779|eCAS_MutualFunds@manipaltechnologies.com|arungupta.1139@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:50|56.95 KB|Sent|Message for arungupta.1139@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3780|eCAS_MutualFunds@manipaltechnologies.com|arungupta.ag87@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:51|70.36 KB|Sent|Message for arungupta.ag87@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3781|eCAS_MutualFunds@manipaltechnologies.com|arungupta.gupta22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:52|55.98 KB|Sent|Message for arungupta.gupta22@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3782|eCAS_MutualFunds@manipaltechnologies.com|arungupta.gupta22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:53|70.91 KB|Sent|Message for arungupta.gupta22@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3783|eCAS_MutualFunds@manipaltechnologies.com|arungupta.its@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:55|74.32 KB|Sent|Message for arungupta.its@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3784|eCAS_MutualFunds@manipaltechnologies.com|arungupta.pcf@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:56|52.42 KB|Sent|Message for arungupta.pcf@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3785|eCAS_MutualFunds@manipaltechnologies.com|arungupta.sbg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:57|64.75 KB|Sent|Message for arungupta.sbg@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3786|eCAS_MutualFunds@manipaltechnologies.com|arungupta.srg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:58|68.03 KB|Sent|Message for arungupta.srg@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3787|eCAS_MutualFunds@manipaltechnologies.com|arungupta01011987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:12:59|48.63 KB|Sent|Message for arungupta01011987@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3788|eCAS_MutualFunds@manipaltechnologies.com|arungupta04707@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:01|72.46 KB|Sent|Message for arungupta04707@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3789|eCAS_MutualFunds@manipaltechnologies.com|arungupta1107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:02|60.94 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arungupta1107@gmail.com to suppression list because delivery has failed 18 times. +3790|eCAS_MutualFunds@manipaltechnologies.com|arungupta1122133@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:03|65.58 KB|Sent|Message for arungupta1122133@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3791|eCAS_MutualFunds@manipaltechnologies.com|arungupta1201@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:04|57.87 KB|Sent|Message for arungupta1201@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3792|eCAS_MutualFunds@manipaltechnologies.com|arungupta120877@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:06|61.21 KB|Sent|Message for arungupta120877@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3793|eCAS_MutualFunds@manipaltechnologies.com|arungupta128@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:07|56.15 KB|Sent|Message for arungupta128@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3794|eCAS_MutualFunds@manipaltechnologies.com|arungupta1605@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:08|61.71 KB|Sent|Message for arungupta1605@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3795|eCAS_MutualFunds@manipaltechnologies.com|arungupta161969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:09|50.99 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arungupta161969@gmail.com to suppression list because delivery has failed 18 times. +3796|eCAS_MutualFunds@manipaltechnologies.com|arungupta1759@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:10|61.91 KB|Sent|Message for arungupta1759@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3797|eCAS_MutualFunds@manipaltechnologies.com|arungupta1986@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:12|60.98 KB|Sent|Message for arungupta1986@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3798|eCAS_MutualFunds@manipaltechnologies.com|arungupta1986@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:13|62.55 KB|Sent|Message for arungupta1986@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3799|eCAS_MutualFunds@manipaltechnologies.com|arungupta2023@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:14|58.75 KB|Sent|Message for arungupta2023@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3800|eCAS_MutualFunds@manipaltechnologies.com|arungupta2509@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:15|84.25 KB|Sent|Message for arungupta2509@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3801|eCAS_MutualFunds@manipaltechnologies.com|arungupta25973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:16|73.33 KB|Sent|Message for arungupta25973@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3802|eCAS_MutualFunds@manipaltechnologies.com|arungupta25973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:18|69.17 KB|Sent|Message for arungupta25973@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3803|eCAS_MutualFunds@manipaltechnologies.com|arungupta2882@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:19|63.88 KB|Sent|Message for arungupta2882@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3804|eCAS_MutualFunds@manipaltechnologies.com|arungupta29@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:20|53.4 KB|Sent|Message for arungupta29@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3805|eCAS_MutualFunds@manipaltechnologies.com|arungupta5200@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:21|69.55 KB|Sent|Message for arungupta5200@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3806|eCAS_MutualFunds@manipaltechnologies.com|arungupta555101@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:22|62.86 KB|Sent|Message for arungupta555101@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3807|eCAS_MutualFunds@manipaltechnologies.com|arungupta5607@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:24|51.12 KB|Sent|Message for arungupta5607@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3808|eCAS_MutualFunds@manipaltechnologies.com|arungupta62834555@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:25|68.4 KB|Sent|Message for arungupta62834555@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3809|eCAS_MutualFunds@manipaltechnologies.com|arungupta62@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:26|57.99 KB|Sent|Message for arungupta62@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +3810|eCAS_MutualFunds@manipaltechnologies.com|arungupta713343@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:27|68.52 KB|Sent|Message for arungupta713343@gmail.com accepted by 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3811|eCAS_MutualFunds@manipaltechnologies.com|arungupta71504@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:28|50.59 KB|Sent|Message for arungupta71504@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3812|eCAS_MutualFunds@manipaltechnologies.com|arungupta75763@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:30|46.96 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3813|eCAS_MutualFunds@manipaltechnologies.com|arungupta799@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:31|56.19 KB|Sent|Message for arungupta799@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3814|eCAS_MutualFunds@manipaltechnologies.com|arungupta84395@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:32|71.88 KB|Sent|Message for arungupta84395@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3815|eCAS_MutualFunds@manipaltechnologies.com|arungupta88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:33|59.84 KB|Sent|Message for arungupta88@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3816|eCAS_MutualFunds@manipaltechnologies.com|arungupta90756@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:34|60.43 KB|Sent|Message for arungupta90756@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3817|eCAS_MutualFunds@manipaltechnologies.com|arungupta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:36|57.92 KB|Sent|Message for arungupta@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3818|eCAS_MutualFunds@manipaltechnologies.com|arungupta@sbi.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:37|63.91 KB|Sent|Message for arungupta@sbi.co.in accepted by 52.101.145.2:25 (sbi-co-in.mail.protection.outlook.com) +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|No SMTP servers were available for vsnal.com. No hosts to try. +3819|eCAS_MutualFunds@manipaltechnologies.com|arungupta@vsnal.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:38|59.52 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arungupta@vsnal.com to suppression list because delivery has failed 18 times. +3820|eCAS_MutualFunds@manipaltechnologies.com|arungupta_jhs@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:39|62.28 KB|Sent|Message for arungupta_jhs@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3821|eCAS_MutualFunds@manipaltechnologies.com|arunguptaakg152@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:40|68.31 KB|Sent|Message for arunguptaakg152@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3822|eCAS_MutualFunds@manipaltechnologies.com|arunguptaakg152@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:42|56.61 KB|Sent|Message for arunguptaakg152@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3823|eCAS_MutualFunds@manipaltechnologies.com|arunguptachp78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:43|48.11 KB|Sent|Message for arunguptachp78@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3824|eCAS_MutualFunds@manipaltechnologies.com|arunguptadhn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:44|73.08 KB|Sent|Message for arunguptadhn@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3825|eCAS_MutualFunds@manipaltechnologies.com|arunguptakurpania123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:45|63.55 KB|Sent|Message for arunguptakurpania123@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3826|eCAS_MutualFunds@manipaltechnologies.com|arunguptap7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:46|63.44 KB|Sent|Message for arunguptap7@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3827|eCAS_MutualFunds@manipaltechnologies.com|arunguptaranchi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:48|71.7 KB|Sent|Message for arunguptaranchi@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3828|eCAS_MutualFunds@manipaltechnologies.com|arunguptartps@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:49|53.57 KB|Sent|Message for arunguptartps@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3829|eCAS_MutualFunds@manipaltechnologies.com|arunguru1989@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:50|64.59 KB|Sent|Message for arunguru1989@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3830|eCAS_MutualFunds@manipaltechnologies.com|arunguruchat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:51|67.93 KB|Sent|Message for arunguruchat@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3831|eCAS_MutualFunds@manipaltechnologies.com|arunguruji75@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:52|69.89 KB|Sent|Message for arunguruji75@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3832|eCAS_MutualFunds@manipaltechnologies.com|arunhait20091959@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:53|55.57 KB|Sent|Message for arunhait20091959@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3833|eCAS_MutualFunds@manipaltechnologies.com|arunhaldar133@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:55|60.03 KB|Sent|Message for arunhaldar133@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3834|eCAS_MutualFunds@manipaltechnologies.com|arunhaldar135@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:56|70.28 KB|Sent|Message for arunhaldar135@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3835|eCAS_MutualFunds@manipaltechnologies.com|arunhalder143@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:57|81.94 KB|Sent|Message for arunhalder143@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3836|eCAS_MutualFunds@manipaltechnologies.com|arunhalder73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:58|55.65 KB|Sent|Message for arunhalder73@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3837|eCAS_MutualFunds@manipaltechnologies.com|arunhandique@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:13:59|48.67 KB|Sent|Message for arunhandique@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3838|eCAS_MutualFunds@manipaltechnologies.com|arunhandles@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:01|63.29 KB|Sent|Message for arunhandles@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3839|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:02|67.81 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunhandoo51@gmail.com to suppression list because delivery has failed 18 times. +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3840|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:03|64.65 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunhandoo51@gmail.com to suppression list because delivery has failed 18 times. +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3841|eCAS_MutualFunds@manipaltechnologies.com|arunhandoo51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:04|54.18 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunhandoo51@gmail.com to suppression list because delivery has failed 18 times. +3842|eCAS_MutualFunds@manipaltechnologies.com|arunhantal58@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:05|50.05 KB|Sent|Message for arunhantal58@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3843|eCAS_MutualFunds@manipaltechnologies.com|arunhapsgcas23@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:07|82.88 KB|Sent|Message for arunhapsgcas23@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3844|eCAS_MutualFunds@manipaltechnologies.com|arunhardware1993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:08|52.44 KB|Sent|Message for arunhardware1993@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3845|eCAS_MutualFunds@manipaltechnologies.com|arunhari3210@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:09|65.02 KB|Sent|Message for arunhari3210@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3846|eCAS_MutualFunds@manipaltechnologies.com|arunharish2002@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:10|107.09 KB|Sent|Message for arunharish2002@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3847|eCAS_MutualFunds@manipaltechnologies.com|arunharison@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:11|58.07 KB|Sent|Message for arunharison@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3848|eCAS_MutualFunds@manipaltechnologies.com|arunharitha29@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:13|61.95 KB|Sent|Message for arunharitha29@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3849|eCAS_MutualFunds@manipaltechnologies.com|arunharitpt@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:14|77.91 KB|Sent|Message for arunharitpt@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3850|eCAS_MutualFunds@manipaltechnologies.com|arunharmalkar22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:15|57.95 KB|Sent|Message for arunharmalkar22@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3851|eCAS_MutualFunds@manipaltechnologies.com|arunharshitha92@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:16|58.87 KB|Sent|Message for arunharshitha92@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3852|eCAS_MutualFunds@manipaltechnologies.com|arunhatimuria138@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:17|64.9 KB|Sent|Message for arunhatimuria138@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3853|eCAS_MutualFunds@manipaltechnologies.com|arunhatwal8766@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:18|49.33 KB|Sent|Message for arunhatwal8766@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3854|eCAS_MutualFunds@manipaltechnologies.com|arunhazam888@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:20|64.82 KB|Sent|Message for arunhazam888@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3855|eCAS_MutualFunds@manipaltechnologies.com|arunhazarika123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:21|48.64 KB|Sent|Message for arunhazarika123@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3856|eCAS_MutualFunds@manipaltechnologies.com|arunhb2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:22|58.8 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3856|eCAS_MutualFunds@manipaltechnologies.com|arunhb2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:22|58.8 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3856|eCAS_MutualFunds@manipaltechnologies.com|arunhb2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:22|58.8 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta5.am0.yahoodns.net) +3856|eCAS_MutualFunds@manipaltechnologies.com|arunhb2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:22|58.8 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +3856|eCAS_MutualFunds@manipaltechnologies.com|arunhb2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:22|58.8 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3856|eCAS_MutualFunds@manipaltechnologies.com|arunhb2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:22|58.8 KB|Sent|Message for arunhb2002@yahoo.com accepted by 67.195.204.72:25 (mta6.am0.yahoodns.net) +3857|eCAS_MutualFunds@manipaltechnologies.com|arunhd2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:23|68.99 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3857|eCAS_MutualFunds@manipaltechnologies.com|arunhd2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:23|68.99 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3857|eCAS_MutualFunds@manipaltechnologies.com|arunhd2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:23|68.99 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta5.am0.yahoodns.net) +3857|eCAS_MutualFunds@manipaltechnologies.com|arunhd2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:23|68.99 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +3857|eCAS_MutualFunds@manipaltechnologies.com|arunhd2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:23|68.99 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3857|eCAS_MutualFunds@manipaltechnologies.com|arunhd2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:23|68.99 KB|Sent|Message for arunhd2000@yahoo.com accepted by 67.195.204.72:25 (mta6.am0.yahoodns.net) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3858|eCAS_MutualFunds@manipaltechnologies.com|arunheaven@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:24|68.01 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunheaven@gmail.com to suppression list because delivery has failed 18 times. +3859|eCAS_MutualFunds@manipaltechnologies.com|arunhebri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:26|81.52 KB|Sent|Message for arunhebri@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3860|eCAS_MutualFunds@manipaltechnologies.com|arunhedaoo1976@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:27|57.94 KB|Sent|Message for arunhedaoo1976@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3861|eCAS_MutualFunds@manipaltechnologies.com|arunhedaoo1976@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:28|51.01 KB|Sent|Message for arunhedaoo1976@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3862|eCAS_MutualFunds@manipaltechnologies.com|arunhedge69@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:29|60.47 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3863|eCAS_MutualFunds@manipaltechnologies.com|arunhembrom93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:30|68.73 KB|Sent|Message for arunhembrom93@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3864|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:32|61.67 KB|Sent|Message for arunhemu66@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.152.5:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|An error occurred while sending the message to 17.42.251.62:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.152.5:25 (mx02.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.156.30:25 (mx02.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.156.30:25 (mx02.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.154.33:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.155.25:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.156.30:25 (mx02.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.56.9.31:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.156.30:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.154.33:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.156.30:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.155.25:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.42.251.62:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.42.251.62:25 (mx02.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.42.251.62:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.155.25:25 (mx02.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Temporary SMTP delivery error when sending to 17.57.155.25:25 (mx01.mail.icloud.com) +3865|eCAS_MutualFunds@manipaltechnologies.com|arunhemu66@icloud.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:33|72.23 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunhemu66@icloud.com to suppression list because delivery has failed 18 times. +3866|eCAS_MutualFunds@manipaltechnologies.com|arunhimalaya78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:34|71.21 KB|Sent|Message for arunhimalaya78@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3867|eCAS_MutualFunds@manipaltechnologies.com|arunhimani1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:35|50.38 KB|Sent|Message for arunhimani1234@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3868|eCAS_MutualFunds@manipaltechnologies.com|arunhiremath92@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:36|53.06 KB|Sent|Message for arunhiremath92@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3869|eCAS_MutualFunds@manipaltechnologies.com|arunhk9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:37|51.74 KB|Sent|Message for arunhk9@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3870|eCAS_MutualFunds@manipaltechnologies.com|arunhmallah@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:39|65.29 KB|Sent|Message for arunhmallah@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +3871|eCAS_MutualFunds@manipaltechnologies.com|arunhmishra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:40|50.14 KB|Sent|Message for arunhmishra@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3872|eCAS_MutualFunds@manipaltechnologies.com|arunholyone@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:41|57.63 KB|Sent|Message for arunholyone@gmail.com accepted by 142.251.12.27:25 (gmail-smtp-in.l.google.com) +3873|eCAS_MutualFunds@manipaltechnologies.com|arunhonyal999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:42|54.89 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta7.am0.yahoodns.net) +3873|eCAS_MutualFunds@manipaltechnologies.com|arunhonyal999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:42|54.89 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +3873|eCAS_MutualFunds@manipaltechnologies.com|arunhonyal999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:42|54.89 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta5.am0.yahoodns.net) +3873|eCAS_MutualFunds@manipaltechnologies.com|arunhonyal999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:42|54.89 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +3873|eCAS_MutualFunds@manipaltechnologies.com|arunhonyal999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:42|54.89 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3873|eCAS_MutualFunds@manipaltechnologies.com|arunhonyal999@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:42|54.89 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3874|eCAS_MutualFunds@manipaltechnologies.com|arunhosamani22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:43|58.39 KB|Sent|Message for arunhosamani22@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3875|eCAS_MutualFunds@manipaltechnologies.com|arunhosamani33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:45|50.51 KB|Sent|Message for arunhosamani33@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3876|eCAS_MutualFunds@manipaltechnologies.com|arunhou@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:46|52.57 KB|Sent|Message for arunhou@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3877|eCAS_MutualFunds@manipaltechnologies.com|arunhprasad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:47|58.57 KB|Sent|Message for arunhprasad@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3878|eCAS_MutualFunds@manipaltechnologies.com|arunhpseb2008@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:48|66.16 KB|Sent|Message for arunhpseb2008@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3879|eCAS_MutualFunds@manipaltechnologies.com|arunhpseb@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:49|62.21 KB|Sent|Message for arunhpseb@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3880|eCAS_MutualFunds@manipaltechnologies.com|arunhpseb@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:50|58.03 KB|Sent|Message for arunhpseb@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3881|eCAS_MutualFunds@manipaltechnologies.com|arunhse@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:52|57.56 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3882|eCAS_MutualFunds@manipaltechnologies.com|arunhungund@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:53|54.98 KB|Sent|Message for arunhungund@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3883|eCAS_MutualFunds@manipaltechnologies.com|aruni.nair12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:54|94.02 KB|Sent|Message for aruni.nair12@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3884|eCAS_MutualFunds@manipaltechnologies.com|aruni.nayak@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:55|80.66 KB|Sent|Message for aruni.nayak@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3885|eCAS_MutualFunds@manipaltechnologies.com|aruni1402nishreyas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:56|54.36 KB|Sent|Message for aruni1402nishreyas@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3886|eCAS_MutualFunds@manipaltechnologies.com|aruni1965@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:58|50.85 KB|Sent|Message for aruni1965@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3887|eCAS_MutualFunds@manipaltechnologies.com|aruniaf.936796@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:14:59|62.25 KB|Sent|Message for aruniaf.936796@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3888|eCAS_MutualFunds@manipaltechnologies.com|aruniajay@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:00|52.36 KB|Sent|Message for aruniajay@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +3889|eCAS_MutualFunds@manipaltechnologies.com|arunibalan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:01|62.43 KB|Sent|Message for arunibalan@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta5.am0.yahoodns.net) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|An error occurred while sending the message to 98.136.96.75:25 (mta5.am0.yahoodns.net) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta6.am0.yahoodns.net) +3890|eCAS_MutualFunds@manipaltechnologies.com|arunibknp@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:02|52.05 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.204.73:25 (mta5.am0.yahoodns.net) +3891|eCAS_MutualFunds@manipaltechnologies.com|arunicgeb@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:04|58.06 KB|Sent|Message for arunicgeb@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3892|eCAS_MutualFunds@manipaltechnologies.com|arunidbi5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:05|65.26 KB|Sent|Message for arunidbi5@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3893|eCAS_MutualFunds@manipaltechnologies.com|arunidebnath5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:06|57.92 KB|Sent|Message for arunidebnath5@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3894|eCAS_MutualFunds@manipaltechnologies.com|arunidis81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:07|51.01 KB|Sent|Message for arunidis81@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3895|eCAS_MutualFunds@manipaltechnologies.com|aruniitdelhi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:08|65.91 KB|Sent|Message for aruniitdelhi@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3896|eCAS_MutualFunds@manipaltechnologies.com|aruniitdelhi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:10|55.05 KB|Sent|Message for aruniitdelhi@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3897|eCAS_MutualFunds@manipaltechnologies.com|aruniitk007@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:11|65.88 KB|Sent|Message for aruniitk007@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3898|eCAS_MutualFunds@manipaltechnologies.com|arunijaiswal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:12|67.39 KB|Sent|Message for arunijaiswal@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3899|eCAS_MutualFunds@manipaltechnologies.com|arunika.ghosh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:13|54.31 KB|Sent|Message for arunika.ghosh@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3900|eCAS_MutualFunds@manipaltechnologies.com|arunika.paul22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:14|63.77 KB|Sent|Message for arunika.paul22@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3901|eCAS_MutualFunds@manipaltechnologies.com|arunika18@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:15|61.98 KB|Sent|Message for arunika18@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3902|eCAS_MutualFunds@manipaltechnologies.com|arunikadey2003@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:17|61.06 KB|Sent|Message for arunikadey2003@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3903|eCAS_MutualFunds@manipaltechnologies.com|arunikagupta.18@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:18|67.47 KB|Sent|Message for arunikagupta.18@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3904|eCAS_MutualFunds@manipaltechnologies.com|arunikamohapatra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:19|94.69 KB|Sent|Message for arunikamohapatra@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3905|eCAS_MutualFunds@manipaltechnologies.com|arunikasonteke@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:20|57.56 KB|Sent|Message for arunikasonteke@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3906|eCAS_MutualFunds@manipaltechnologies.com|arunima.1108@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:21|85.61 KB|Sent|Message for arunima.1108@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3907|eCAS_MutualFunds@manipaltechnologies.com|arunima.115028@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:23|54.62 KB|Sent|Message for arunima.115028@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3908|eCAS_MutualFunds@manipaltechnologies.com|arunima.631991@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:24|47.87 KB|Sent|Message for arunima.631991@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3909|eCAS_MutualFunds@manipaltechnologies.com|arunima.631991@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:25|73.64 KB|Sent|Message for arunima.631991@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3910|eCAS_MutualFunds@manipaltechnologies.com|arunima.86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:26|48.84 KB|Sent|Message for arunima.86@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3911|eCAS_MutualFunds@manipaltechnologies.com|arunima.a.u@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:27|67.59 KB|Sent|Message for arunima.a.u@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3912|eCAS_MutualFunds@manipaltechnologies.com|arunima.asn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:28|67.2 KB|Sent|Message for arunima.asn@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3913|eCAS_MutualFunds@manipaltechnologies.com|arunima.bhunia1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:30|55.73 KB|Sent|Message for arunima.bhunia1@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3914|eCAS_MutualFunds@manipaltechnologies.com|arunima.chatter@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:31|68.93 KB|Sent|Message for arunima.chatter@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3915|eCAS_MutualFunds@manipaltechnologies.com|arunima.chatterjee555@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:32|55.33 KB|Sent|Message for arunima.chatterjee555@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3916|eCAS_MutualFunds@manipaltechnologies.com|arunima.civil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:33|51.78 KB|Sent|Message for arunima.civil@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3917|eCAS_MutualFunds@manipaltechnologies.com|arunima.cj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:34|59.95 KB|Sent|Message for arunima.cj@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3918|eCAS_MutualFunds@manipaltechnologies.com|arunima.cse@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:36|68.33 KB|Sent|Message for arunima.cse@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3919|eCAS_MutualFunds@manipaltechnologies.com|arunima.dash83@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:37|51.61 KB|Sent|Message for arunima.dash83@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3920|eCAS_MutualFunds@manipaltechnologies.com|arunima.dhawan86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:38|59.82 KB|Sent|Message for arunima.dhawan86@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3921|eCAS_MutualFunds@manipaltechnologies.com|arunima.ghoshal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:39|71.37 KB|Sent|Message for arunima.ghoshal@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3922|eCAS_MutualFunds@manipaltechnologies.com|arunima.gupta2012@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:40|66.17 KB|Sent|Message for arunima.gupta2012@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3923|eCAS_MutualFunds@manipaltechnologies.com|arunima.iyengar@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:41|54.99 KB|Sent|Message for arunima.iyengar@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +3924|eCAS_MutualFunds@manipaltechnologies.com|arunima.majumdar2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:43|69.08 KB|Sent|Message for arunima.majumdar2014@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3925|eCAS_MutualFunds@manipaltechnologies.com|arunima.nanda14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:44|58.54 KB|Sent|Message for arunima.nanda14@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3926|eCAS_MutualFunds@manipaltechnologies.com|arunima.parhi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:45|52.81 KB|Sent|Message for arunima.parhi@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3927|eCAS_MutualFunds@manipaltechnologies.com|arunima.paria@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:46|61.52 KB|Sent|Message for arunima.paria@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3928|eCAS_MutualFunds@manipaltechnologies.com|arunima.raja5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:47|68.14 KB|Sent|Message for arunima.raja5@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3929|eCAS_MutualFunds@manipaltechnologies.com|arunima.rathore@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:48|63.61 KB|Sent|Message for arunima.rathore@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3930|eCAS_MutualFunds@manipaltechnologies.com|arunima.rau@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:50|55.81 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunima.rau@gmail.com to suppression list because delivery has failed 18 times. +3931|eCAS_MutualFunds@manipaltechnologies.com|arunima.rawat90@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:51|52.78 KB|Sent|Message for arunima.rawat90@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3932|eCAS_MutualFunds@manipaltechnologies.com|arunima.rini81@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:52|67.68 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunima.rini81@gmail.com to suppression list because delivery has failed 18 times. +3933|eCAS_MutualFunds@manipaltechnologies.com|arunima.saxena15@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:53|56.48 KB|Sent|Message for arunima.saxena15@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3934|eCAS_MutualFunds@manipaltechnologies.com|arunima.sen1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:54|72.21 KB|Sent|Message for arunima.sen1@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3935|eCAS_MutualFunds@manipaltechnologies.com|arunima.shreya@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:56|78.84 KB|Sent|Message for arunima.shreya@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3936|eCAS_MutualFunds@manipaltechnologies.com|arunima.tina@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:57|66.24 KB|Sent|Message for arunima.tina@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3937|eCAS_MutualFunds@manipaltechnologies.com|arunima.tiwari197@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:58|57.84 KB|Sent|Message for arunima.tiwari197@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3938|eCAS_MutualFunds@manipaltechnologies.com|arunima.verma0623@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:15:59|65.82 KB|Sent|Message for arunima.verma0623@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3939|eCAS_MutualFunds@manipaltechnologies.com|arunima0101@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:00|52.41 KB|Sent|Message for arunima0101@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3940|eCAS_MutualFunds@manipaltechnologies.com|arunima0101@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:02|54.72 KB|Sent|Message for arunima0101@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3941|eCAS_MutualFunds@manipaltechnologies.com|arunima0597@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:03|79.95 KB|Sent|Message for arunima0597@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3942|eCAS_MutualFunds@manipaltechnologies.com|arunima0605@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:04|61.65 KB|Sent|Message for arunima0605@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3943|eCAS_MutualFunds@manipaltechnologies.com|arunima100886@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:05|60.38 KB|Sent|Message for arunima100886@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3944|eCAS_MutualFunds@manipaltechnologies.com|arunima1228@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:06|65.73 KB|Sent|Message for arunima1228@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3945|eCAS_MutualFunds@manipaltechnologies.com|arunima12p@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:08|60.99 KB|Sent|Message for arunima12p@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3946|eCAS_MutualFunds@manipaltechnologies.com|arunima14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:09|77.35 KB|Sent|Message for arunima14@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3947|eCAS_MutualFunds@manipaltechnologies.com|arunima1793@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:10|65.38 KB|Sent|Message for arunima1793@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3948|eCAS_MutualFunds@manipaltechnologies.com|arunima1998d@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:11|62.44 KB|Sent|Message for arunima1998d@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3949|eCAS_MutualFunds@manipaltechnologies.com|arunima2002ing@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:12|60.51 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3949|eCAS_MutualFunds@manipaltechnologies.com|arunima2002ing@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:12|60.51 KB|HardFail|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3949|eCAS_MutualFunds@manipaltechnologies.com|arunima2002ing@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:12|60.51 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3949|eCAS_MutualFunds@manipaltechnologies.com|arunima2002ing@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:12|60.51 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3949|eCAS_MutualFunds@manipaltechnologies.com|arunima2002ing@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:12|60.51 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3949|eCAS_MutualFunds@manipaltechnologies.com|arunima2002ing@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:12|60.51 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3949|eCAS_MutualFunds@manipaltechnologies.com|arunima2002ing@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:12|60.51 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3949|eCAS_MutualFunds@manipaltechnologies.com|arunima2002ing@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:12|60.51 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3949|eCAS_MutualFunds@manipaltechnologies.com|arunima2002ing@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:12|60.51 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3949|eCAS_MutualFunds@manipaltechnologies.com|arunima2002ing@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:12|60.51 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3950|eCAS_MutualFunds@manipaltechnologies.com|arunima201414@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:14|55.69 KB|Sent|Message for arunima201414@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3951|eCAS_MutualFunds@manipaltechnologies.com|arunima2024@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:15|55.57 KB|Sent|Message for arunima2024@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +3952|eCAS_MutualFunds@manipaltechnologies.com|arunima2120@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:16|62.83 KB|Sent|Message for arunima2120@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3953|eCAS_MutualFunds@manipaltechnologies.com|arunima2711@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:17|64.02 KB|Sent|Message for arunima2711@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3954|eCAS_MutualFunds@manipaltechnologies.com|arunima2k18@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:19|67.31 KB|Sent|Message for arunima2k18@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +3955|eCAS_MutualFunds@manipaltechnologies.com|arunima362@outlook.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:20|54.97 KB|Sent|Message for arunima362@outlook.com accepted by 52.101.41.23:25 (outlook-com.olc.protection.outlook.com) +3956|eCAS_MutualFunds@manipaltechnologies.com|arunima5288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:21|59.46 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3957|eCAS_MutualFunds@manipaltechnologies.com|arunima711205@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:22|59.63 KB|Sent|Message for arunima711205@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3958|eCAS_MutualFunds@manipaltechnologies.com|arunima98@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:24|77.24 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3958|eCAS_MutualFunds@manipaltechnologies.com|arunima98@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:24|77.24 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3958|eCAS_MutualFunds@manipaltechnologies.com|arunima98@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:24|77.24 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3958|eCAS_MutualFunds@manipaltechnologies.com|arunima98@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:24|77.24 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3958|eCAS_MutualFunds@manipaltechnologies.com|arunima98@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:24|77.24 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3958|eCAS_MutualFunds@manipaltechnologies.com|arunima98@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:24|77.24 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3958|eCAS_MutualFunds@manipaltechnologies.com|arunima98@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:24|77.24 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3958|eCAS_MutualFunds@manipaltechnologies.com|arunima98@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:24|77.24 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3958|eCAS_MutualFunds@manipaltechnologies.com|arunima98@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:24|77.24 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3958|eCAS_MutualFunds@manipaltechnologies.com|arunima98@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:24|77.24 KB|Sent|Message for arunima98@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3959|eCAS_MutualFunds@manipaltechnologies.com|arunima@gm.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:25|51.84 KB|HardFail|Permanent SMTP delivery error when sending to 52.101.194.17:25 (gm-com.mail.protection.outlook.com) +3960|eCAS_MutualFunds@manipaltechnologies.com|arunima@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:26|67.42 KB|Sent|Message for arunima@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3961|eCAS_MutualFunds@manipaltechnologies.com|arunima_03@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:27|66.68 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3961|eCAS_MutualFunds@manipaltechnologies.com|arunima_03@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:27|66.68 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3961|eCAS_MutualFunds@manipaltechnologies.com|arunima_03@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:27|66.68 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3961|eCAS_MutualFunds@manipaltechnologies.com|arunima_03@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:27|66.68 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3961|eCAS_MutualFunds@manipaltechnologies.com|arunima_03@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:27|66.68 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3961|eCAS_MutualFunds@manipaltechnologies.com|arunima_03@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:27|66.68 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +3961|eCAS_MutualFunds@manipaltechnologies.com|arunima_03@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:27|66.68 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3961|eCAS_MutualFunds@manipaltechnologies.com|arunima_03@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:27|66.68 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3961|eCAS_MutualFunds@manipaltechnologies.com|arunima_03@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:27|66.68 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3961|eCAS_MutualFunds@manipaltechnologies.com|arunima_03@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:27|66.68 KB|Sent|Message for arunima_03@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +3962|eCAS_MutualFunds@manipaltechnologies.com|arunima_chakraborty@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:28|66.82 KB|Sent|Message for arunima_chakraborty@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +3963|eCAS_MutualFunds@manipaltechnologies.com|arunima_mitra@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:30|52.38 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta7.am0.yahoodns.net) +3963|eCAS_MutualFunds@manipaltechnologies.com|arunima_mitra@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:30|52.38 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +3963|eCAS_MutualFunds@manipaltechnologies.com|arunima_mitra@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:30|52.38 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +3963|eCAS_MutualFunds@manipaltechnologies.com|arunima_mitra@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:30|52.38 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3963|eCAS_MutualFunds@manipaltechnologies.com|arunima_mitra@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:30|52.38 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +3963|eCAS_MutualFunds@manipaltechnologies.com|arunima_mitra@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:30|52.38 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta6.am0.yahoodns.net) +3963|eCAS_MutualFunds@manipaltechnologies.com|arunima_mitra@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:30|52.38 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +3963|eCAS_MutualFunds@manipaltechnologies.com|arunima_mitra@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:30|52.38 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta5.am0.yahoodns.net) +3963|eCAS_MutualFunds@manipaltechnologies.com|arunima_mitra@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:30|52.38 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta6.am0.yahoodns.net) +3963|eCAS_MutualFunds@manipaltechnologies.com|arunima_mitra@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:30|52.38 KB|Sent|Message for arunima_mitra@ymail.com accepted by 67.195.228.106:25 (mta5.am0.yahoodns.net) +3964|eCAS_MutualFunds@manipaltechnologies.com|arunima_ry@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:31|56.43 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta6.am0.yahoodns.net) +3964|eCAS_MutualFunds@manipaltechnologies.com|arunima_ry@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:31|56.43 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3964|eCAS_MutualFunds@manipaltechnologies.com|arunima_ry@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:31|56.43 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +3964|eCAS_MutualFunds@manipaltechnologies.com|arunima_ry@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:31|56.43 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +3964|eCAS_MutualFunds@manipaltechnologies.com|arunima_ry@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:31|56.43 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +3964|eCAS_MutualFunds@manipaltechnologies.com|arunima_ry@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:31|56.43 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta5.am0.yahoodns.net) +3964|eCAS_MutualFunds@manipaltechnologies.com|arunima_ry@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:31|56.43 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +3964|eCAS_MutualFunds@manipaltechnologies.com|arunima_ry@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:31|56.43 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta7.am0.yahoodns.net) +3964|eCAS_MutualFunds@manipaltechnologies.com|arunima_ry@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:31|56.43 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta6.am0.yahoodns.net) +3964|eCAS_MutualFunds@manipaltechnologies.com|arunima_ry@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:31|56.43 KB|Sent|Message for arunima_ry@yahoo.com accepted by 98.136.96.74:25 (mta5.am0.yahoodns.net) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +3965|eCAS_MutualFunds@manipaltechnologies.com|arunimaadi1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:32|57.08 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunimaadi1234@gmail.com to suppression list because delivery has failed 18 times. +3966|eCAS_MutualFunds@manipaltechnologies.com|arunimab2019@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:33|58.83 KB|Sent|Message for arunimab2019@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3967|eCAS_MutualFunds@manipaltechnologies.com|arunimab82@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:34|67.48 KB|Sent|Message for arunimab82@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3968|eCAS_MutualFunds@manipaltechnologies.com|arunimab861@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:35|64.34 KB|Sent|Message for arunimab861@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3969|eCAS_MutualFunds@manipaltechnologies.com|arunimabaidya8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:37|63.1 KB|Sent|Message for arunimabaidya8@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3970|eCAS_MutualFunds@manipaltechnologies.com|arunimabanerji@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:38|62.86 KB|Sent|Message for arunimabanerji@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3971|eCAS_MutualFunds@manipaltechnologies.com|arunimabaranwal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:39|55.48 KB|Sent|Message for arunimabaranwal@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3972|eCAS_MutualFunds@manipaltechnologies.com|arunimaberadas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:40|57.57 KB|Sent|Message for arunimaberadas@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3973|eCAS_MutualFunds@manipaltechnologies.com|arunimabh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:41|55.14 KB|Sent|Message for arunimabh@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3974|eCAS_MutualFunds@manipaltechnologies.com|arunimabhandari7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:43|74.04 KB|Sent|Message for arunimabhandari7@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3975|eCAS_MutualFunds@manipaltechnologies.com|arunimabhattacharya.01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:44|76.1 KB|Sent|Message for arunimabhattacharya.01@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3976|eCAS_MutualFunds@manipaltechnologies.com|arunimabhattacharya.01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:45|55.64 KB|Sent|Message for arunimabhattacharya.01@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3977|eCAS_MutualFunds@manipaltechnologies.com|arunimabiswas76@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:46|64.62 KB|Sent|Message for arunimabiswas76@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3978|eCAS_MutualFunds@manipaltechnologies.com|arunimac05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:47|68.66 KB|Sent|Message for arunimac05@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3979|eCAS_MutualFunds@manipaltechnologies.com|arunimac47@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:48|66.5 KB|Sent|Message for arunimac47@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3980|eCAS_MutualFunds@manipaltechnologies.com|arunimachakravorty410@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:50|60.58 KB|Sent|Message for arunimachakravorty410@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +3981|eCAS_MutualFunds@manipaltechnologies.com|arunimachaks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:51|55.25 KB|Sent|Message for arunimachaks@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3982|eCAS_MutualFunds@manipaltechnologies.com|arunimachandel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:52|70.17 KB|Sent|Message for arunimachandel@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3983|eCAS_MutualFunds@manipaltechnologies.com|arunimachandel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:53|66.12 KB|Sent|Message for arunimachandel@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3984|eCAS_MutualFunds@manipaltechnologies.com|arunimachatterjee54@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:54|49.29 KB|Sent|Message for arunimachatterjee54@gmail.com accepted by 172.253.118.26:25 (gmail-smtp-in.l.google.com) +3985|eCAS_MutualFunds@manipaltechnologies.com|arunimachatterjee84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:56|61.95 KB|Sent|Message for arunimachatterjee84@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3986|eCAS_MutualFunds@manipaltechnologies.com|arunimachaudhuri5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:57|65.75 KB|Sent|Message for arunimachaudhuri5@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3987|eCAS_MutualFunds@manipaltechnologies.com|arunimachoudhury1984@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:58|58.17 KB|Sent|Message for arunimachoudhury1984@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3988|eCAS_MutualFunds@manipaltechnologies.com|arunimad.76@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:16:59|70.85 KB|Sent|Message for arunimad.76@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3989|eCAS_MutualFunds@manipaltechnologies.com|arunimad09@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:00|57.14 KB|Sent|Message for arunimad09@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3990|eCAS_MutualFunds@manipaltechnologies.com|arunimad1967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:01|63.1 KB|Sent|Message for arunimad1967@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +3991|eCAS_MutualFunds@manipaltechnologies.com|arunimadas.kol@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:03|52.1 KB|Sent|Message for arunimadas.kol@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3992|eCAS_MutualFunds@manipaltechnologies.com|arunimadas029@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:04|51.84 KB|Sent|Message for arunimadas029@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3993|eCAS_MutualFunds@manipaltechnologies.com|arunimadas141@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:05|61.35 KB|Sent|Message for arunimadas141@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3994|eCAS_MutualFunds@manipaltechnologies.com|arunimadas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:06|51.97 KB|Sent|Message for arunimadas@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3995|eCAS_MutualFunds@manipaltechnologies.com|arunimadebnath9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:07|52.83 KB|Sent|Message for arunimadebnath9@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3996|eCAS_MutualFunds@manipaltechnologies.com|arunimadehingia7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:09|63.78 KB|Sent|Message for arunimadehingia7@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3997|eCAS_MutualFunds@manipaltechnologies.com|arunimadevi84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:10|65.94 KB|Sent|Message for arunimadevi84@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3998|eCAS_MutualFunds@manipaltechnologies.com|arunimadey.cghs@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:11|64.92 KB|Sent|Message for arunimadey.cghs@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +3999|eCAS_MutualFunds@manipaltechnologies.com|arunimadey30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:12|75.83 KB|Sent|Message for arunimadey30@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4000|eCAS_MutualFunds@manipaltechnologies.com|arunimadutta985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:13|67.62 KB|Sent|Message for arunimadutta985@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4001|eCAS_MutualFunds@manipaltechnologies.com|arunimag579@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:15|75.27 KB|Sent|Message for arunimag579@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4002|eCAS_MutualFunds@manipaltechnologies.com|arunimaghosh0904@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:16|73.0 KB|Sent|Message for arunimaghosh0904@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4003|eCAS_MutualFunds@manipaltechnologies.com|arunimagup@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:17|74.1 KB|Sent|Message for arunimagup@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4004|eCAS_MutualFunds@manipaltechnologies.com|arunimagupta20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:18|56.83 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4004|eCAS_MutualFunds@manipaltechnologies.com|arunimagupta20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:18|56.83 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta7.am0.yahoodns.net) +4004|eCAS_MutualFunds@manipaltechnologies.com|arunimagupta20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:18|56.83 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4004|eCAS_MutualFunds@manipaltechnologies.com|arunimagupta20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:18|56.83 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta5.am0.yahoodns.net) +4004|eCAS_MutualFunds@manipaltechnologies.com|arunimagupta20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:18|56.83 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4004|eCAS_MutualFunds@manipaltechnologies.com|arunimagupta20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:18|56.83 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4004|eCAS_MutualFunds@manipaltechnologies.com|arunimagupta20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:18|56.83 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta5.am0.yahoodns.net) +4004|eCAS_MutualFunds@manipaltechnologies.com|arunimagupta20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:18|56.83 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +4004|eCAS_MutualFunds@manipaltechnologies.com|arunimagupta20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:18|56.83 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4004|eCAS_MutualFunds@manipaltechnologies.com|arunimagupta20@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:18|56.83 KB|Sent|Message for arunimagupta20@yahoo.com accepted by 67.195.228.109:25 (mta7.am0.yahoodns.net) +4005|eCAS_MutualFunds@manipaltechnologies.com|arunimagururani031@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:19|56.11 KB|Sent|Message for arunimagururani031@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4006|eCAS_MutualFunds@manipaltechnologies.com|arunimajalota@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:21|74.97 KB|Sent|Message for arunimajalota@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4007|eCAS_MutualFunds@manipaltechnologies.com|arunimajalota@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:22|63.17 KB|Sent|Message for arunimajalota@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4008|eCAS_MutualFunds@manipaltechnologies.com|arunimajiji057@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:23|56.0 KB|Sent|Message for arunimajiji057@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4009|eCAS_MutualFunds@manipaltechnologies.com|arunimak1102@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:24|83.09 KB|Sent|Message for arunimak1102@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4010|eCAS_MutualFunds@manipaltechnologies.com|arunimak69@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:25|71.32 KB|Sent|Message for arunimak69@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4011|eCAS_MutualFunds@manipaltechnologies.com|arunimakannur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:26|71.24 KB|Sent|Message for arunimakannur@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4012|eCAS_MutualFunds@manipaltechnologies.com|arunimakhare79674@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:28|59.34 KB|Sent|Message for arunimakhare79674@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4013|eCAS_MutualFunds@manipaltechnologies.com|arunimakoulj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:29|64.55 KB|Sent|Message for arunimakoulj@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4014|eCAS_MutualFunds@manipaltechnologies.com|arunimam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:30|71.79 KB|Sent|Message for arunimam@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4015|eCAS_MutualFunds@manipaltechnologies.com|arunimamaiti1224@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:31|52.18 KB|Sent|Message for arunimamaiti1224@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4016|eCAS_MutualFunds@manipaltechnologies.com|arunimamalhotra0777@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:32|65.98 KB|Sent|Message for arunimamalhotra0777@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4017|eCAS_MutualFunds@manipaltechnologies.com|arunimamishra.mishra42@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:34|68.89 KB|Sent|Message for arunimamishra.mishra42@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4018|eCAS_MutualFunds@manipaltechnologies.com|arunimamondal78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:35|55.31 KB|Sent|Message for arunimamondal78@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4019|eCAS_MutualFunds@manipaltechnologies.com|arunimamondal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:36|48.83 KB|Sent|Message for arunimamondal@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4020|eCAS_MutualFunds@manipaltechnologies.com|arunimamunni73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:37|65.02 KB|Sent|Message for arunimamunni73@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4021|eCAS_MutualFunds@manipaltechnologies.com|arunimanayak2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:38|66.57 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunimanayak2017@gmail.com to suppression list because delivery has failed 18 times. +4022|eCAS_MutualFunds@manipaltechnologies.com|arunimanycsm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:40|61.66 KB|Sent|Message for arunimanycsm@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4023|eCAS_MutualFunds@manipaltechnologies.com|arunimapal313@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:41|55.48 KB|Sent|Message for arunimapal313@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4024|eCAS_MutualFunds@manipaltechnologies.com|arunimapandey16@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:42|51.57 KB|Sent|Message for arunimapandey16@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4025|eCAS_MutualFunds@manipaltechnologies.com|arunimapinkivyas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:43|54.72 KB|Sent|Message for arunimapinkivyas@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4026|eCAS_MutualFunds@manipaltechnologies.com|arunimapn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:44|73.87 KB|Sent|Message for arunimapn@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4027|eCAS_MutualFunds@manipaltechnologies.com|arunimapradhan80@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:46|66.76 KB|Sent|Message for arunimapradhan80@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4028|eCAS_MutualFunds@manipaltechnologies.com|arunimarai@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:47|73.8 KB|Sent|Message for arunimarai@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4029|eCAS_MutualFunds@manipaltechnologies.com|arunimarajan1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:48|62.37 KB|Sent|Message for arunimarajan1@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4030|eCAS_MutualFunds@manipaltechnologies.com|arunimarajesh26@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:49|71.13 KB|Sent|Message for arunimarajesh26@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4031|eCAS_MutualFunds@manipaltechnologies.com|arunimaray97@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:50|58.84 KB|Sent|Message for arunimaray97@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4032|eCAS_MutualFunds@manipaltechnologies.com|arunimaroy10@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:51|52.56 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunimaroy10@gmail.com to suppression list because delivery has failed 18 times. +4033|eCAS_MutualFunds@manipaltechnologies.com|arunimas1990@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:53|67.85 KB|Sent|Message for arunimas1990@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4034|eCAS_MutualFunds@manipaltechnologies.com|arunimas2001@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:54|77.57 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4034|eCAS_MutualFunds@manipaltechnologies.com|arunimas2001@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:54|77.57 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4034|eCAS_MutualFunds@manipaltechnologies.com|arunimas2001@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:54|77.57 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4034|eCAS_MutualFunds@manipaltechnologies.com|arunimas2001@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:54|77.57 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4034|eCAS_MutualFunds@manipaltechnologies.com|arunimas2001@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:54|77.57 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4034|eCAS_MutualFunds@manipaltechnologies.com|arunimas2001@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:54|77.57 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4034|eCAS_MutualFunds@manipaltechnologies.com|arunimas2001@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:54|77.57 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4034|eCAS_MutualFunds@manipaltechnologies.com|arunimas2001@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:54|77.57 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4034|eCAS_MutualFunds@manipaltechnologies.com|arunimas2001@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:54|77.57 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4034|eCAS_MutualFunds@manipaltechnologies.com|arunimas2001@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:54|77.57 KB|Sent|Message for arunimas2001@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4035|eCAS_MutualFunds@manipaltechnologies.com|arunimasagar8093@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:55|67.13 KB|Sent|Message for arunimasagar8093@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4036|eCAS_MutualFunds@manipaltechnologies.com|arunimasaha11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:56|60.02 KB|Sent|Message for arunimasaha11@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4037|eCAS_MutualFunds@manipaltechnologies.com|arunimasaxena1996@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:57|58.4 KB|Sent|Message for arunimasaxena1996@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4038|eCAS_MutualFunds@manipaltechnologies.com|arunimasingh16121993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:17:59|68.85 KB|Sent|Message for arunimasingh16121993@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4039|eCAS_MutualFunds@manipaltechnologies.com|arunimasingh16121993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:00|69.67 KB|Sent|Message for arunimasingh16121993@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4040|eCAS_MutualFunds@manipaltechnologies.com|arunimasingha9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:01|64.69 KB|Sent|Message for arunimasingha9@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4041|eCAS_MutualFunds@manipaltechnologies.com|arunimasinha12@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:02|60.67 KB|Sent|Message for arunimasinha12@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +4042|eCAS_MutualFunds@manipaltechnologies.com|arunimasl@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:03|66.53 KB|Sent|Message for arunimasl@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4043|eCAS_MutualFunds@manipaltechnologies.com|arunimasonijaiswal305@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:05|62.72 KB|Sent|Message for arunimasonijaiswal305@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4044|eCAS_MutualFunds@manipaltechnologies.com|arunimasrajesh2005@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:06|71.21 KB|Sent|Message for arunimasrajesh2005@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4045|eCAS_MutualFunds@manipaltechnologies.com|arunimasyamvn1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:07|52.45 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunimasyamvn1@gmail.com to suppression list because delivery has failed 18 times. +4046|eCAS_MutualFunds@manipaltechnologies.com|arunimat29@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:08|50.46 KB|Sent|Message for arunimat29@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4047|eCAS_MutualFunds@manipaltechnologies.com|arunimatalukdar0090@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:09|61.06 KB|Sent|Message for arunimatalukdar0090@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4048|eCAS_MutualFunds@manipaltechnologies.com|arunimatamuli909@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:11|58.9 KB|Sent|Message for arunimatamuli909@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4049|eCAS_MutualFunds@manipaltechnologies.com|arunimathepal79@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:12|77.5 KB|Sent|Message for arunimathepal79@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4050|eCAS_MutualFunds@manipaltechnologies.com|arunimathomas001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:13|68.02 KB|Sent|Message for arunimathomas001@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4051|eCAS_MutualFunds@manipaltechnologies.com|arunimatripathi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:14|70.96 KB|Sent|Message for arunimatripathi@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4052|eCAS_MutualFunds@manipaltechnologies.com|arunimatrivandram99@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:15|58.08 KB|Sent|Message for arunimatrivandram99@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4053|eCAS_MutualFunds@manipaltechnologies.com|arunimattara@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:17|80.59 KB|Sent|Message for arunimattara@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4054|eCAS_MutualFunds@manipaltechnologies.com|arunimatyagi@outlook.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:18|54.01 KB|Sent|Message for arunimatyagi@outlook.com accepted by 52.101.11.20:25 (outlook-com.olc.protection.outlook.com) +4055|eCAS_MutualFunds@manipaltechnologies.com|arunimaverma10209@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:19|52.31 KB|Sent|Message for arunimaverma10209@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4056|eCAS_MutualFunds@manipaltechnologies.com|arunimaverma211@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:20|69.56 KB|Sent|Message for arunimaverma211@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4057|eCAS_MutualFunds@manipaltechnologies.com|arunimaverma786@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:21|59.98 KB|Sent|Message for arunimaverma786@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4058|eCAS_MutualFunds@manipaltechnologies.com|arunimavrm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:22|59.01 KB|Sent|Message for arunimavrm@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4059|eCAS_MutualFunds@manipaltechnologies.com|arunimawary478@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:24|62.18 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunimawary478@gmail.com to suppression list because delivery has failed 18 times. +4060|eCAS_MutualFunds@manipaltechnologies.com|arunimbhatnagar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:25|49.35 KB|Sent|Message for arunimbhatnagar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4061|eCAS_MutualFunds@manipaltechnologies.com|arunimicroleap@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:26|51.93 KB|Sent|Message for arunimicroleap@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4062|eCAS_MutualFunds@manipaltechnologies.com|arunimishra1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:27|58.09 KB|Sent|Message for arunimishra1973@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4063|eCAS_MutualFunds@manipaltechnologies.com|arunimry@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:28|55.46 KB|Sent|Message for arunimry@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4064|eCAS_MutualFunds@manipaltechnologies.com|arunimsbhu22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:30|67.21 KB|Sent|Message for arunimsbhu22@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4065|eCAS_MutualFunds@manipaltechnologies.com|aruninba2013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:31|60.66 KB|Sent|Message for aruninba2013@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4066|eCAS_MutualFunds@manipaltechnologies.com|arunindian19@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:32|62.2 KB|Sent|Message for arunindian19@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4067|eCAS_MutualFunds@manipaltechnologies.com|arunindu@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:33|51.4 KB|Sent|Message for arunindu@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4068|eCAS_MutualFunds@manipaltechnologies.com|arunindusqc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:34|61.27 KB|Sent|Message for arunindusqc@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4069|eCAS_MutualFunds@manipaltechnologies.com|aruninmarcel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:36|56.26 KB|Sent|Message for aruninmarcel@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta5.am0.yahoodns.net) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta5.am0.yahoodns.net) +4070|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:37|75.08 KB|Sent|Message for aruninsr@yahoo.com accepted by 67.195.204.73:25 (mta5.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta5.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta5.am0.yahoodns.net) +4071|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:38|61.05 KB|Sent|Message for aruninsr@yahoo.com accepted by 67.195.204.73:25 (mta5.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta5.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta5.am0.yahoodns.net) +4072|eCAS_MutualFunds@manipaltechnologies.com|aruninsr@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:39|78.62 KB|Sent|Message for aruninsr@yahoo.com accepted by 67.195.204.73:25 (mta5.am0.yahoodns.net) +4073|eCAS_MutualFunds@manipaltechnologies.com|arunintajbeck1508@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:40|65.55 KB|Sent|Message for arunintajbeck1508@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4074|eCAS_MutualFunds@manipaltechnologies.com|arunipanda13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:42|56.58 KB|Sent|Message for arunipanda13@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4075|eCAS_MutualFunds@manipaltechnologies.com|arunipanda@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:43|55.63 KB|Sent|Message for arunipanda@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4076|eCAS_MutualFunds@manipaltechnologies.com|aruniprasad83@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:44|51.1 KB|Sent|Message for aruniprasad83@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4077|eCAS_MutualFunds@manipaltechnologies.com|aruniprasad83@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:45|56.76 KB|Sent|Message for aruniprasad83@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4078|eCAS_MutualFunds@manipaltechnologies.com|aruniroy84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:46|79.38 KB|Sent|Message for aruniroy84@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4079|eCAS_MutualFunds@manipaltechnologies.com|arunisb@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:48|72.77 KB|Sent|Message for arunisb@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4080|eCAS_MutualFunds@manipaltechnologies.com|arunisethy1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:49|52.21 KB|Sent|Message for arunisethy1973@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4081|eCAS_MutualFunds@manipaltechnologies.com|arunishsohal18@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:50|52.32 KB|Sent|Message for arunishsohal18@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4082|eCAS_MutualFunds@manipaltechnologies.com|arunishu15@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:51|52.18 KB|Sent|Message for arunishu15@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4083|eCAS_MutualFunds@manipaltechnologies.com|arunisk12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:52|61.85 KB|Sent|Message for arunisk12@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4084|eCAS_MutualFunds@manipaltechnologies.com|arunislam79@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:54|55.17 KB|Sent|Message for arunislam79@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4085|eCAS_MutualFunds@manipaltechnologies.com|arunisred@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:55|53.4 KB|Sent|Message for arunisred@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4086|eCAS_MutualFunds@manipaltechnologies.com|arunissacp@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:56|82.82 KB|Sent|Message for arunissacp@hotmail.com accepted by 52.101.11.16:25 (hotmail-com.olc.protection.outlook.com) +4087|eCAS_MutualFunds@manipaltechnologies.com|arunit85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:57|54.36 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4088|eCAS_MutualFunds@manipaltechnologies.com|arunita.biswas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:18:58|90.41 KB|Sent|Message for arunita.biswas@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4089|eCAS_MutualFunds@manipaltechnologies.com|arunita.jha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:00|68.13 KB|Sent|Message for arunita.jha@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4090|eCAS_MutualFunds@manipaltechnologies.com|arunita1991@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:01|68.77 KB|Sent|Message for arunita1991@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4091|eCAS_MutualFunds@manipaltechnologies.com|arunita21p@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:02|65.92 KB|Sent|Message for arunita21p@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4092|eCAS_MutualFunds@manipaltechnologies.com|arunita88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:03|60.06 KB|Sent|Message for arunita88@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4093|eCAS_MutualFunds@manipaltechnologies.com|arunitachandrakar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:04|79.78 KB|Sent|Message for arunitachandrakar@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4094|eCAS_MutualFunds@manipaltechnologies.com|arunitamisri177@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:05|51.13 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4095|eCAS_MutualFunds@manipaltechnologies.com|arunitape9297@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:07|49.06 KB|Sent|Message for arunitape9297@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4096|eCAS_MutualFunds@manipaltechnologies.com|arunitaroychowdhury@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:08|55.83 KB|Sent|Message for arunitaroychowdhury@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4097|eCAS_MutualFunds@manipaltechnologies.com|arunitasen1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:09|57.9 KB|Sent|Message for arunitasen1@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4098|eCAS_MutualFunds@manipaltechnologies.com|arunitsme227961@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:10|49.89 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4099|eCAS_MutualFunds@manipaltechnologies.com|aruniyengar_bhagavan@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:12|54.51 KB|Sent|Message for aruniyengar_bhagavan@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +4100|eCAS_MutualFunds@manipaltechnologies.com|aruniyer.r@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:13|58.81 KB|Sent|Message for aruniyer.r@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4101|eCAS_MutualFunds@manipaltechnologies.com|arunizai@windowslive.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:15|65.87 KB|Sent|Message for arunizai@windowslive.com accepted by 52.101.8.37:25 (nam.olc.protection.outlook.com) +4102|eCAS_MutualFunds@manipaltechnologies.com|arunizam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:16|52.63 KB|Sent|Message for arunizam@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4103|eCAS_MutualFunds@manipaltechnologies.com|arunj.cbe@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:17|61.65 KB|Sent|Message for arunj.cbe@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4104|eCAS_MutualFunds@manipaltechnologies.com|arunj0032@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:18|61.57 KB|Sent|Message for arunj0032@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4105|eCAS_MutualFunds@manipaltechnologies.com|arunj0672@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:20|52.18 KB|Sent|Message for arunj0672@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4106|eCAS_MutualFunds@manipaltechnologies.com|arunj14284@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:21|48.1 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4107|eCAS_MutualFunds@manipaltechnologies.com|arunj18350@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:22|51.26 KB|Sent|Message for arunj18350@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4108|eCAS_MutualFunds@manipaltechnologies.com|arunj2449@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:23|63.05 KB|Sent|Message for arunj2449@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4109|eCAS_MutualFunds@manipaltechnologies.com|arunj3524@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:24|56.25 KB|Sent|Message for arunj3524@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4110|eCAS_MutualFunds@manipaltechnologies.com|arunj5493@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:26|88.3 KB|Sent|Message for arunj5493@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4111|eCAS_MutualFunds@manipaltechnologies.com|arunj8881@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:27|63.25 KB|Sent|Message for arunj8881@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4112|eCAS_MutualFunds@manipaltechnologies.com|arunj@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:28|54.24 KB|Sent|Message for arunj@hotmail.com accepted by 52.101.42.15:25 (hotmail-com.olc.protection.outlook.com) +4113|eCAS_MutualFunds@manipaltechnologies.com|arunja278@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:29|85.47 KB|Sent|Message for arunja278@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4114|eCAS_MutualFunds@manipaltechnologies.com|arunjachak111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:30|65.93 KB|Sent|Message for arunjachak111@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4115|eCAS_MutualFunds@manipaltechnologies.com|arunjack123@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:32|51.92 KB|Sent|Message for arunjack123@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +4116|eCAS_MutualFunds@manipaltechnologies.com|arunjacobdd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:33|50.56 KB|Sent|Message for arunjacobdd@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4117|eCAS_MutualFunds@manipaltechnologies.com|arunjacobgeorge@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:34|64.98 KB|Sent|Message for arunjacobgeorge@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4118|eCAS_MutualFunds@manipaltechnologies.com|arunjadhav.435@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:35|63.77 KB|Sent|Message for arunjadhav.435@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4119|eCAS_MutualFunds@manipaltechnologies.com|arunjadhav1330@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:36|49.3 KB|Sent|Message for arunjadhav1330@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4120|eCAS_MutualFunds@manipaltechnologies.com|arunjadhav1977@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:37|65.77 KB|Sent|Message for arunjadhav1977@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4121|eCAS_MutualFunds@manipaltechnologies.com|arunjadhav2424@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:39|61.42 KB|Sent|Message for arunjadhav2424@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4122|eCAS_MutualFunds@manipaltechnologies.com|arunjadhav392@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:40|51.19 KB|Sent|Message for arunjadhav392@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4123|eCAS_MutualFunds@manipaltechnologies.com|arunjadhav5266@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:41|55.83 KB|Sent|Message for arunjadhav5266@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4124|eCAS_MutualFunds@manipaltechnologies.com|arunjadhav613@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:42|56.41 KB|Sent|Message for arunjadhav613@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4125|eCAS_MutualFunds@manipaltechnologies.com|arunjadhav706@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:43|51.28 KB|Sent|Message for arunjadhav706@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4126|eCAS_MutualFunds@manipaltechnologies.com|arunjadhav7873@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:45|51.86 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4127|eCAS_MutualFunds@manipaltechnologies.com|arunjadi965@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:46|50.1 KB|Sent|Message for arunjadi965@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4128|eCAS_MutualFunds@manipaltechnologies.com|arunjagani418@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:47|58.91 KB|Sent|Message for arunjagani418@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4129|eCAS_MutualFunds@manipaltechnologies.com|arunjagat8274@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:48|66.04 KB|Sent|Message for arunjagat8274@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4130|eCAS_MutualFunds@manipaltechnologies.com|arunjagdale1961@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:49|47.91 KB|Sent|Message for arunjagdale1961@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4131|eCAS_MutualFunds@manipaltechnologies.com|arunjagdhari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:51|55.91 KB|Sent|Message for arunjagdhari@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4132|eCAS_MutualFunds@manipaltechnologies.com|arunjagtap1979@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:52|75.73 KB|Sent|Message for arunjagtap1979@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4133|eCAS_MutualFunds@manipaltechnologies.com|arunjagtap201020@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:53|58.39 KB|Sent|Message for arunjagtap201020@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4134|eCAS_MutualFunds@manipaltechnologies.com|arunjagtap281087@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:54|58.45 KB|Sent|Message for arunjagtap281087@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4135|eCAS_MutualFunds@manipaltechnologies.com|arunjagtap303@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:55|71.22 KB|Sent|Message for arunjagtap303@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4136|eCAS_MutualFunds@manipaltechnologies.com|arunjain0508@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:57|69.07 KB|Sent|Message for arunjain0508@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4137|eCAS_MutualFunds@manipaltechnologies.com|arunjain0901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:58|60.41 KB|Sent|Message for arunjain0901@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4138|eCAS_MutualFunds@manipaltechnologies.com|arunjain1233@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:19:59|62.78 KB|Sent|Message for arunjain1233@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4139|eCAS_MutualFunds@manipaltechnologies.com|arunjain201712@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:00|70.78 KB|Sent|Message for arunjain201712@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4140|eCAS_MutualFunds@manipaltechnologies.com|arunjain205@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:01|70.0 KB|Sent|Message for arunjain205@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4141|eCAS_MutualFunds@manipaltechnologies.com|arunjain3001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:02|84.74 KB|Sent|Message for arunjain3001@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4142|eCAS_MutualFunds@manipaltechnologies.com|arunjain304@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:04|62.24 KB|Sent|Message for arunjain304@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4143|eCAS_MutualFunds@manipaltechnologies.com|arunjain33@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:05|70.18 KB|Sent|Message for arunjain33@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4144|eCAS_MutualFunds@manipaltechnologies.com|arunjain432@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:06|74.27 KB|Sent|Message for arunjain432@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4145|eCAS_MutualFunds@manipaltechnologies.com|arunjain596@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:07|64.88 KB|Sent|Message for arunjain596@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4146|eCAS_MutualFunds@manipaltechnologies.com|arunjain70001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:08|52.77 KB|Sent|Message for arunjain70001@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4147|eCAS_MutualFunds@manipaltechnologies.com|arunjain89@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:10|65.67 KB|Sent|Message for arunjain89@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4148|eCAS_MutualFunds@manipaltechnologies.com|arunjaing12345@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:11|63.79 KB|Sent|Message for arunjaing12345@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4149|eCAS_MutualFunds@manipaltechnologies.com|arunjainghuwara@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:12|68.61 KB|Sent|Message for arunjainghuwara@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4150|eCAS_MutualFunds@manipaltechnologies.com|arunjainghuwara@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:13|66.26 KB|Sent|Message for arunjainghuwara@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4151|eCAS_MutualFunds@manipaltechnologies.com|arunjainshilpa@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:14|77.35 KB|Sent|Message for arunjainshilpa@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4152|eCAS_MutualFunds@manipaltechnologies.com|arunjainshimla@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:16|84.98 KB|Sent|Message for arunjainshimla@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4153|eCAS_MutualFunds@manipaltechnologies.com|arunjaishwar4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:17|48.72 KB|Sent|Message for arunjaishwar4@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4154|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal1274@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:18|85.26 KB|Sent|Message for arunjaiswal1274@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4155|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal1957@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:19|49.27 KB|Sent|Message for arunjaiswal1957@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4156|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:20|57.58 KB|Sent|Message for arunjaiswal4@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4157|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:21|51.4 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunjaiswal501@gmail.com to suppression list because delivery has failed 18 times. +4158|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal766@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:23|62.62 KB|Sent|Message for arunjaiswal766@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4159|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal817@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:24|81.63 KB|Sent|Message for arunjaiswal817@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4160|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal9336@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:25|67.59 KB|Sent|Message for arunjaiswal9336@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4161|eCAS_MutualFunds@manipaltechnologies.com|arunjaiswal99999@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:26|54.73 KB|Sent|Message for arunjaiswal99999@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4162|eCAS_MutualFunds@manipaltechnologies.com|arunjajodia1965@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:27|68.46 KB|Sent|Message for arunjajodia1965@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4163|eCAS_MutualFunds@manipaltechnologies.com|arunjakhmola9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:29|57.75 KB|Sent|Message for arunjakhmola9@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4164|eCAS_MutualFunds@manipaltechnologies.com|arunjalaj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:30|67.86 KB|Sent|Message for arunjalaj@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4165|eCAS_MutualFunds@manipaltechnologies.com|arunjalaj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:31|76.72 KB|Sent|Message for arunjalaj@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta5.am0.yahoodns.net) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta5.am0.yahoodns.net) +4166|eCAS_MutualFunds@manipaltechnologies.com|arunjalie@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:32|58.61 KB|Sent|Message for arunjalie@yahoo.com accepted by 67.195.204.77:25 (mta7.am0.yahoodns.net) +4167|eCAS_MutualFunds@manipaltechnologies.com|arunjalui@123gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:33|65.96 KB|Sent|Message for arunjalui@123gmail.com accepted by 103.224.212.34:25 (park-mx.above.com) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta5.am0.yahoodns.net) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +4168|eCAS_MutualFunds@manipaltechnologies.com|arunjamadagni2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:35|67.79 KB|Sent|Message for arunjamadagni2002@yahoo.com accepted by 67.195.204.77:25 (mta7.am0.yahoodns.net) +4169|eCAS_MutualFunds@manipaltechnologies.com|arunjamadoba22@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:36|64.51 KB|Sent|Message for arunjamadoba22@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4170|eCAS_MutualFunds@manipaltechnologies.com|arunjames1995@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:37|72.17 KB|Sent|Message for arunjames1995@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4171|eCAS_MutualFunds@manipaltechnologies.com|arunjames55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:38|60.3 KB|Sent|Message for arunjames55@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4172|eCAS_MutualFunds@manipaltechnologies.com|arunjamliya7566@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:39|53.94 KB|Sent|Message for arunjamliya7566@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4173|eCAS_MutualFunds@manipaltechnologies.com|arunjan1964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:40|64.19 KB|Sent|Message for arunjan1964@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4174|eCAS_MutualFunds@manipaltechnologies.com|arunjana517@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:42|57.17 KB|Sent|Message for arunjana517@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4175|eCAS_MutualFunds@manipaltechnologies.com|arunjana885@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:43|74.35 KB|Sent|Message for arunjana885@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4176|eCAS_MutualFunds@manipaltechnologies.com|arunjanac@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:44|48.37 KB|Sent|Message for arunjanac@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4177|eCAS_MutualFunds@manipaltechnologies.com|arunjanajana9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:45|49.26 KB|Sent|Message for arunjanajana9@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4178|eCAS_MutualFunds@manipaltechnologies.com|arunjanbandhu9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:46|71.76 KB|Sent|Message for arunjanbandhu9@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4179|eCAS_MutualFunds@manipaltechnologies.com|arunjangid88306@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:47|62.57 KB|Sent|Message for arunjangid88306@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta6.am0.yahoodns.net) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +4180|eCAS_MutualFunds@manipaltechnologies.com|arunjangid@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:49|92.01 KB|Sent|Message for arunjangid@yahoo.com accepted by 67.195.204.77:25 (mta7.am0.yahoodns.net) +4181|eCAS_MutualFunds@manipaltechnologies.com|arunjangidi.12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:50|61.78 KB|Sent|Message for arunjangidi.12@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4182|eCAS_MutualFunds@manipaltechnologies.com|arunjani977@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:51|65.77 KB|Sent|Message for arunjani977@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4183|eCAS_MutualFunds@manipaltechnologies.com|arunjanjua90@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:52|64.91 KB|Sent|Message for arunjanjua90@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4184|eCAS_MutualFunds@manipaltechnologies.com|arunjariwala4559@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:53|76.11 KB|Sent|Message for arunjariwala4559@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4185|eCAS_MutualFunds@manipaltechnologies.com|arunjariwala4559@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:55|70.58 KB|Sent|Message for arunjariwala4559@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4186|eCAS_MutualFunds@manipaltechnologies.com|arunjashpur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:56|60.09 KB|Sent|Message for arunjashpur@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4187|eCAS_MutualFunds@manipaltechnologies.com|arunjasuja@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:57|75.05 KB|Sent|Message for arunjasuja@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4188|eCAS_MutualFunds@manipaltechnologies.com|arunjasutkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:58|49.27 KB|Sent|Message for arunjasutkar@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4189|eCAS_MutualFunds@manipaltechnologies.com|arunjay05@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:20:59|65.08 KB|Sent|Message for arunjay05@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4190|eCAS_MutualFunds@manipaltechnologies.com|arunjay1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:01|69.93 KB|Sent|Message for arunjay1@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4191|eCAS_MutualFunds@manipaltechnologies.com|arunjay93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:02|48.42 KB|Sent|Message for arunjay93@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4192|eCAS_MutualFunds@manipaltechnologies.com|arunjay@katakam.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:03|52.77 KB|Sent|Message for arunjay@katakam.com accepted by 142.250.4.27:25 (aspmx.l.google.com) +4193|eCAS_MutualFunds@manipaltechnologies.com|arunjaybhave78@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:04|70.63 KB|Sent|Message for arunjaybhave78@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4194|eCAS_MutualFunds@manipaltechnologies.com|arunjayshibparibore@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:05|53.41 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4195|eCAS_MutualFunds@manipaltechnologies.com|arunjbabar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:06|56.56 KB|Sent|Message for arunjbabar@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4196|eCAS_MutualFunds@manipaltechnologies.com|arunjchakma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:08|51.92 KB|Sent|Message for arunjchakma@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4197|eCAS_MutualFunds@manipaltechnologies.com|arunjd.tripathi2016@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:09|67.87 KB|Sent|Message for arunjd.tripathi2016@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4198|eCAS_MutualFunds@manipaltechnologies.com|arunjd.tripathi2016@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:10|55.58 KB|Sent|Message for arunjd.tripathi2016@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4199|eCAS_MutualFunds@manipaltechnologies.com|arunjeer2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:11|51.18 KB|Sent|Message for arunjeer2@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4200|eCAS_MutualFunds@manipaltechnologies.com|arunjeev.24@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:12|62.8 KB|Sent|Message for arunjeev.24@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta5.am0.yahoodns.net) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta5.am0.yahoodns.net) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|An error occurred while sending the message to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +4201|eCAS_MutualFunds@manipaltechnologies.com|arunjeevi07@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:13|47.26 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4202|eCAS_MutualFunds@manipaltechnologies.com|arunjeganath@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:15|88.13 KB|Sent|Message for arunjeganath@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4203|eCAS_MutualFunds@manipaltechnologies.com|arunjegathesh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:16|52.17 KB|Sent|Message for arunjegathesh@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4204|eCAS_MutualFunds@manipaltechnologies.com|arunjena.2010@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:17|48.51 KB|Sent|Message for arunjena.2010@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4205|eCAS_MutualFunds@manipaltechnologies.com|arunjena1402@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:18|62.89 KB|Sent|Message for arunjena1402@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4206|eCAS_MutualFunds@manipaltechnologies.com|arunjena96@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:19|67.59 KB|Sent|Message for arunjena96@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4207|eCAS_MutualFunds@manipaltechnologies.com|arunjeni2010@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:20|51.58 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta5.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta5.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta5.am0.yahoodns.net) +4208|eCAS_MutualFunds@manipaltechnologies.com|arunjerold@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:22|51.34 KB|Sent|Message for arunjerold@yahoo.com accepted by 67.195.204.72:25 (mta6.am0.yahoodns.net) +4209|eCAS_MutualFunds@manipaltechnologies.com|arunjesonmathias1993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:23|50.39 KB|Sent|Message for arunjesonmathias1993@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4210|eCAS_MutualFunds@manipaltechnologies.com|arunjesonmathias1993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:24|52.33 KB|Sent|Message for arunjesonmathias1993@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4211|eCAS_MutualFunds@manipaltechnologies.com|arunjeyanthi1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:25|62.84 KB|Sent|Message for arunjeyanthi1985@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4212|eCAS_MutualFunds@manipaltechnologies.com|arunjha.213@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:26|58.81 KB|Sent|Message for arunjha.213@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta5.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta5.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta5.am0.yahoodns.net) +4213|eCAS_MutualFunds@manipaltechnologies.com|arunjha11118@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:28|57.21 KB|Sent|Message for arunjha11118@yahoo.com accepted by 67.195.204.72:25 (mta6.am0.yahoodns.net) +4214|eCAS_MutualFunds@manipaltechnologies.com|arunjha1992@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:29|64.42 KB|Sent|Message for arunjha1992@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4215|eCAS_MutualFunds@manipaltechnologies.com|arunjha2019@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:30|63.75 KB|Sent|Message for arunjha2019@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4216|eCAS_MutualFunds@manipaltechnologies.com|arunjha331@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:32|76.7 KB|Sent|Message for arunjha331@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4217|eCAS_MutualFunds@manipaltechnologies.com|arunjha34@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:33|48.78 KB|Sent|Message for arunjha34@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4218|eCAS_MutualFunds@manipaltechnologies.com|arunjha77.er@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:34|90.22 KB|Sent|Message for arunjha77.er@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4219|eCAS_MutualFunds@manipaltechnologies.com|arunjha80211@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:35|52.3 KB|Sent|Message for arunjha80211@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4220|eCAS_MutualFunds@manipaltechnologies.com|arunjhahjp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:36|57.34 KB|Sent|Message for arunjhahjp@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4221|eCAS_MutualFunds@manipaltechnologies.com|arunjhansi@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:37|59.79 KB|Sent|Message for arunjhansi@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +4222|eCAS_MutualFunds@manipaltechnologies.com|arunjhurani1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:39|54.43 KB|Sent|Message for arunjhurani1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4223|eCAS_MutualFunds@manipaltechnologies.com|arunjhurani1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:40|50.81 KB|Sent|Message for arunjhurani1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4224|eCAS_MutualFunds@manipaltechnologies.com|arunji147@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:41|61.05 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunji147@gmail.com to suppression list because delivery has failed 18 times. +4225|eCAS_MutualFunds@manipaltechnologies.com|arunji1957@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:42|58.66 KB|Sent|Message for arunji1957@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4226|eCAS_MutualFunds@manipaltechnologies.com|arunji1979@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:43|60.08 KB|Sent|Message for arunji1979@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4227|eCAS_MutualFunds@manipaltechnologies.com|arunji20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:44|60.91 KB|Sent|Message for arunji20@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4228|eCAS_MutualFunds@manipaltechnologies.com|arunji7777@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:46|79.95 KB|Sent|Message for arunji7777@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4229|eCAS_MutualFunds@manipaltechnologies.com|arunjikesarwani82@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:47|61.51 KB|Sent|Message for arunjikesarwani82@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4230|eCAS_MutualFunds@manipaltechnologies.com|arunjimoza@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:48|55.29 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunjimoza@gmail.com to suppression list because delivery has failed 18 times. +4231|eCAS_MutualFunds@manipaltechnologies.com|arunjinfo1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:49|54.26 KB|Sent|Message for arunjinfo1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4232|eCAS_MutualFunds@manipaltechnologies.com|arunjit0079@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:50|53.42 KB|Sent|Message for arunjit0079@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4233|eCAS_MutualFunds@manipaltechnologies.com|arunjit0079@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:51|69.69 KB|Sent|Message for arunjit0079@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4234|eCAS_MutualFunds@manipaltechnologies.com|arunjit331@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:53|54.67 KB|Sent|Message for arunjit331@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4235|eCAS_MutualFunds@manipaltechnologies.com|arunjit86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:54|58.27 KB|Sent|Message for arunjit86@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta7.am0.yahoodns.net) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta5.am0.yahoodns.net) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4236|eCAS_MutualFunds@manipaltechnologies.com|arunjitc@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:55|76.1 KB|Sent|Message for arunjitc@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +4237|eCAS_MutualFunds@manipaltechnologies.com|arunjithkayavil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:56|65.32 KB|Sent|Message for arunjithkayavil@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4238|eCAS_MutualFunds@manipaltechnologies.com|arunjiverma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:57|68.66 KB|Sent|Message for arunjiverma@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4239|eCAS_MutualFunds@manipaltechnologies.com|arunjivtode77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:21:59|55.72 KB|Sent|Message for arunjivtode77@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4240|eCAS_MutualFunds@manipaltechnologies.com|arunjj013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:00|49.96 KB|Sent|Message for arunjj013@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4241|eCAS_MutualFunds@manipaltechnologies.com|arunjj123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:01|55.56 KB|Sent|Message for arunjj123@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4242|eCAS_MutualFunds@manipaltechnologies.com|arunjk.john@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:02|48.43 KB|Sent|Message for arunjk.john@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4243|eCAS_MutualFunds@manipaltechnologies.com|arunjmnayak@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:03|66.46 KB|Sent|Message for arunjmnayak@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4244|eCAS_MutualFunds@manipaltechnologies.com|arunjnv9799@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:04|63.82 KB|Sent|Message for arunjnv9799@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4245|eCAS_MutualFunds@manipaltechnologies.com|arunjnv981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:06|111.51 KB|Sent|Message for arunjnv981@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4246|eCAS_MutualFunds@manipaltechnologies.com|arunjogi1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:07|58.3 KB|Sent|Message for arunjogi1987@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4247|eCAS_MutualFunds@manipaltechnologies.com|arunjohari84@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:08|59.11 KB|Sent|Message for arunjohari84@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4248|eCAS_MutualFunds@manipaltechnologies.com|arunjohnwaller@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:09|68.17 KB|Sent|Message for arunjohnwaller@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4249|eCAS_MutualFunds@manipaltechnologies.com|arunjohri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:10|66.56 KB|Sent|Message for arunjohri@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4250|eCAS_MutualFunds@manipaltechnologies.com|arunjonny01@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:11|53.5 KB|Sent|Message for arunjonny01@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4251|eCAS_MutualFunds@manipaltechnologies.com|arunjori661@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:13|64.08 KB|Sent|Message for arunjori661@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4252|eCAS_MutualFunds@manipaltechnologies.com|arunjose232@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:14|49.68 KB|Sent|Message for arunjose232@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4253|eCAS_MutualFunds@manipaltechnologies.com|arunjoseph.14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:15|52.59 KB|Sent|Message for arunjoseph.14@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4254|eCAS_MutualFunds@manipaltechnologies.com|arunjoseph1020@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:16|51.76 KB|Sent|Message for arunjoseph1020@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4255|eCAS_MutualFunds@manipaltechnologies.com|arunjosephchacko@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:17|65.51 KB|Sent|Message for arunjosephchacko@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4256|eCAS_MutualFunds@manipaltechnologies.com|arunjosephmha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:19|69.18 KB|Sent|Message for arunjosephmha@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4257|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi1955@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:20|55.52 KB|Sent|Message for arunjoshi1955@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4258|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi2093@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:21|66.02 KB|Sent|Message for arunjoshi2093@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4259|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi520@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:22|49.78 KB|Sent|Message for arunjoshi520@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4260|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi6526@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:23|50.78 KB|Sent|Message for arunjoshi6526@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4261|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi70@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:24|64.78 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta7.am0.yahoodns.net) +4261|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi70@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:24|64.78 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4261|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi70@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:24|64.78 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4261|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi70@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:24|64.78 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4261|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi70@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:24|64.78 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta6.am0.yahoodns.net) +4261|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi70@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:24|64.78 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4261|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi70@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:24|64.78 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4261|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi70@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:24|64.78 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta5.am0.yahoodns.net) +4261|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi70@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:24|64.78 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta5.am0.yahoodns.net) +4261|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi70@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:24|64.78 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta6.am0.yahoodns.net) +4261|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi70@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:24|64.78 KB|Sent|Message for arunjoshi70@yahoo.com accepted by 98.136.96.91:25 (mta5.am0.yahoodns.net) +4262|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi7695@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:26|55.64 KB|Sent|Message for arunjoshi7695@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4263|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi8288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:27|60.77 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunjoshi8288@gmail.com to suppression list because delivery has failed 18 times. +4264|eCAS_MutualFunds@manipaltechnologies.com|arunjoshi873@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:28|61.93 KB|Sent|Message for arunjoshi873@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4265|eCAS_MutualFunds@manipaltechnologies.com|arunjp19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:29|66.08 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4265|eCAS_MutualFunds@manipaltechnologies.com|arunjp19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:29|66.08 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4265|eCAS_MutualFunds@manipaltechnologies.com|arunjp19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:29|66.08 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4265|eCAS_MutualFunds@manipaltechnologies.com|arunjp19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:29|66.08 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4265|eCAS_MutualFunds@manipaltechnologies.com|arunjp19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:29|66.08 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4265|eCAS_MutualFunds@manipaltechnologies.com|arunjp19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:29|66.08 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4265|eCAS_MutualFunds@manipaltechnologies.com|arunjp19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:29|66.08 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4265|eCAS_MutualFunds@manipaltechnologies.com|arunjp19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:29|66.08 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4265|eCAS_MutualFunds@manipaltechnologies.com|arunjp19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:29|66.08 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4265|eCAS_MutualFunds@manipaltechnologies.com|arunjp19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:29|66.08 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4265|eCAS_MutualFunds@manipaltechnologies.com|arunjp19@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:29|66.08 KB|Sent|Message for arunjp19@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4266|eCAS_MutualFunds@manipaltechnologies.com|arunjpr.gupta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:30|65.44 KB|Sent|Message for arunjpr.gupta@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4267|eCAS_MutualFunds@manipaltechnologies.com|arunjrr04@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:31|51.92 KB|Sent|Message for arunjrr04@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4268|eCAS_MutualFunds@manipaltechnologies.com|arunjs.hif@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:33|51.5 KB|Sent|Message for arunjs.hif@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4269|eCAS_MutualFunds@manipaltechnologies.com|arunjshirodkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:34|61.22 KB|Sent|Message for arunjshirodkar@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4270|eCAS_MutualFunds@manipaltechnologies.com|arunjsr2018@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:35|74.52 KB|Sent|Message for arunjsr2018@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4271|eCAS_MutualFunds@manipaltechnologies.com|arunjsr96@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:36|60.43 KB|Sent|Message for arunjsr96@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4272|eCAS_MutualFunds@manipaltechnologies.com|arunjunapandy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:37|61.05 KB|Sent|Message for arunjunapandy@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4273|eCAS_MutualFunds@manipaltechnologies.com|arunjunavel@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:39|67.89 KB|Sent|Message for arunjunavel@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4274|eCAS_MutualFunds@manipaltechnologies.com|arunjuneja0404@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:40|56.7 KB|Sent|Message for arunjuneja0404@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4275|eCAS_MutualFunds@manipaltechnologies.com|arunjustice@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:41|52.19 KB|Sent|Message for arunjustice@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4276|eCAS_MutualFunds@manipaltechnologies.com|arunjvs2022@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:42|62.35 KB|Sent|Message for arunjvs2022@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4277|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi.eda@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:43|73.07 KB|Sent|Message for arunjyothi.eda@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4278|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi.m@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:44|52.23 KB|Sent|Message for arunjyothi.m@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4279|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi.perumalla@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:46|66.4 KB|Sent|Message for arunjyothi.perumalla@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4280|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi00@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:47|68.23 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4280|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi00@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:47|68.23 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta5.am0.yahoodns.net) +4280|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi00@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:47|68.23 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4280|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi00@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:47|68.23 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4280|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi00@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:47|68.23 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +4280|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi00@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:47|68.23 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4280|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi00@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:47|68.23 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4280|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi00@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:47|68.23 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta5.am0.yahoodns.net) +4280|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi00@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:47|68.23 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +4280|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi00@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:47|68.23 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +4280|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi00@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:47|68.23 KB|Sent|Message for arunjyothi00@yahoo.com accepted by 98.136.96.91:25 (mta5.am0.yahoodns.net) +4281|eCAS_MutualFunds@manipaltechnologies.com|arunjyothi666@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:48|63.32 KB|Sent|Message for arunjyothi666@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4282|eCAS_MutualFunds@manipaltechnologies.com|arunjyothikn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:49|67.27 KB|Sent|Message for arunjyothikn@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4283|eCAS_MutualFunds@manipaltechnologies.com|arunjyothimasula@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:50|69.18 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunjyothimasula@gmail.com to suppression list because delivery has failed 18 times. +4284|eCAS_MutualFunds@manipaltechnologies.com|arunjyoti.dutta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:51|68.84 KB|Sent|Message for arunjyoti.dutta@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4285|eCAS_MutualFunds@manipaltechnologies.com|arunjyoti2006@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:53|70.8 KB|Sent|Message for arunjyoti2006@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4286|eCAS_MutualFunds@manipaltechnologies.com|arunjyoti2209@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:54|58.3 KB|Sent|Message for arunjyoti2209@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4287|eCAS_MutualFunds@manipaltechnologies.com|arunjyoti235@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:55|49.75 KB|Sent|Message for arunjyoti235@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4288|eCAS_MutualFunds@manipaltechnologies.com|arunjyoti3768@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:56|52.54 KB|Sent|Message for arunjyoti3768@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4289|eCAS_MutualFunds@manipaltechnologies.com|arunjyotichetia13@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:57|54.72 KB|Sent|Message for arunjyotichetia13@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4290|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisaikia578@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:22:59|52.16 KB|Sent|Message for arunjyotisaikia578@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4291|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisarkar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:00|57.49 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +4291|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisarkar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:00|57.49 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta5.am0.yahoodns.net) +4291|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisarkar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:00|57.49 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4291|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisarkar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:00|57.49 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4291|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisarkar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:00|57.49 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +4291|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisarkar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:00|57.49 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4291|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisarkar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:00|57.49 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4291|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisarkar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:00|57.49 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta5.am0.yahoodns.net) +4291|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisarkar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:00|57.49 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +4291|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisarkar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:00|57.49 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +4291|eCAS_MutualFunds@manipaltechnologies.com|arunjyotisarkar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:00|57.49 KB|Sent|Message for arunjyotisarkar@yahoo.com accepted by 98.136.96.91:25 (mta5.am0.yahoodns.net) +4292|eCAS_MutualFunds@manipaltechnologies.com|arunjyotithapar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:01|77.46 KB|Sent|Message for arunjyotithapar@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4293|eCAS_MutualFunds@manipaltechnologies.com|arunjyotsna.2009@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:02|72.37 KB|Sent|Message for arunjyotsna.2009@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4294|eCAS_MutualFunds@manipaltechnologies.com|arunjyotsna.2009@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:03|56.24 KB|Sent|Message for arunjyotsna.2009@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4295|eCAS_MutualFunds@manipaltechnologies.com|arunk.bpm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:04|66.01 KB|Sent|Message for arunk.bpm@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4296|eCAS_MutualFunds@manipaltechnologies.com|arunk.dxer@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:06|63.7 KB|Sent|Message for arunk.dxer@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4297|eCAS_MutualFunds@manipaltechnologies.com|arunk.karmakar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:07|79.4 KB|Sent|Message for arunk.karmakar@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4298|eCAS_MutualFunds@manipaltechnologies.com|arunk.kr195@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:08|67.37 KB|Sent|Message for arunk.kr195@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4299|eCAS_MutualFunds@manipaltechnologies.com|arunk.nayak1234@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:09|57.3 KB|Sent|Message for arunk.nayak1234@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4300|eCAS_MutualFunds@manipaltechnologies.com|arunk.singh125@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:10|47.31 KB|Sent|Message for arunk.singh125@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4301|eCAS_MutualFunds@manipaltechnologies.com|arunk.vnk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:11|91.26 KB|Sent|Message for arunk.vnk@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4302|eCAS_MutualFunds@manipaltechnologies.com|arunk00070@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:13|50.14 KB|Sent|Message for arunk00070@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4303|eCAS_MutualFunds@manipaltechnologies.com|arunk036779@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:14|50.3 KB|Sent|Message for arunk036779@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4304|eCAS_MutualFunds@manipaltechnologies.com|arunk056195@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:15|50.99 KB|Sent|Message for arunk056195@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4305|eCAS_MutualFunds@manipaltechnologies.com|arunk05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:16|50.68 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta5.am0.yahoodns.net) +4305|eCAS_MutualFunds@manipaltechnologies.com|arunk05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:16|50.68 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4305|eCAS_MutualFunds@manipaltechnologies.com|arunk05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:16|50.68 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4305|eCAS_MutualFunds@manipaltechnologies.com|arunk05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:16|50.68 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +4305|eCAS_MutualFunds@manipaltechnologies.com|arunk05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:16|50.68 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +4305|eCAS_MutualFunds@manipaltechnologies.com|arunk05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:16|50.68 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +4305|eCAS_MutualFunds@manipaltechnologies.com|arunk05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:16|50.68 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4305|eCAS_MutualFunds@manipaltechnologies.com|arunk05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:16|50.68 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4305|eCAS_MutualFunds@manipaltechnologies.com|arunk05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:16|50.68 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +4305|eCAS_MutualFunds@manipaltechnologies.com|arunk05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:16|50.68 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta7.am0.yahoodns.net) +4305|eCAS_MutualFunds@manipaltechnologies.com|arunk05@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:16|50.68 KB|Sent|Message for arunk05@yahoo.com accepted by 98.136.96.77:25 (mta6.am0.yahoodns.net) +4306|eCAS_MutualFunds@manipaltechnologies.com|arunk066650@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:17|54.58 KB|Sent|Message for arunk066650@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4307|eCAS_MutualFunds@manipaltechnologies.com|arunk08@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:19|50.32 KB|Sent|Message for arunk08@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4308|eCAS_MutualFunds@manipaltechnologies.com|arunk1278@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:20|57.96 KB|Sent|Message for arunk1278@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4309|eCAS_MutualFunds@manipaltechnologies.com|arunk12dec@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:21|78.43 KB|Sent|Message for arunk12dec@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4310|eCAS_MutualFunds@manipaltechnologies.com|arunk1584@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:22|59.93 KB|Sent|Message for arunk1584@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4311|eCAS_MutualFunds@manipaltechnologies.com|arunk170@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:23|73.9 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta6.am0.yahoodns.net) +4311|eCAS_MutualFunds@manipaltechnologies.com|arunk170@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:23|73.9 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4311|eCAS_MutualFunds@manipaltechnologies.com|arunk170@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:23|73.9 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4311|eCAS_MutualFunds@manipaltechnologies.com|arunk170@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:23|73.9 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +4311|eCAS_MutualFunds@manipaltechnologies.com|arunk170@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:23|73.9 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +4311|eCAS_MutualFunds@manipaltechnologies.com|arunk170@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:23|73.9 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +4311|eCAS_MutualFunds@manipaltechnologies.com|arunk170@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:23|73.9 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4311|eCAS_MutualFunds@manipaltechnologies.com|arunk170@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:23|73.9 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4311|eCAS_MutualFunds@manipaltechnologies.com|arunk170@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:23|73.9 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +4311|eCAS_MutualFunds@manipaltechnologies.com|arunk170@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:23|73.9 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +4311|eCAS_MutualFunds@manipaltechnologies.com|arunk170@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:23|73.9 KB|Sent|Message for arunk170@yahoo.com accepted by 98.136.96.77:25 (mta6.am0.yahoodns.net) +4312|eCAS_MutualFunds@manipaltechnologies.com|arunk2029@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:25|51.92 KB|Sent|Message for arunk2029@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4313|eCAS_MutualFunds@manipaltechnologies.com|arunk2033@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:26|69.04 KB|Sent|Message for arunk2033@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4314|eCAS_MutualFunds@manipaltechnologies.com|arunk2325@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:27|55.8 KB|Sent|Message for arunk2325@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4315|eCAS_MutualFunds@manipaltechnologies.com|arunk272@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:28|51.94 KB|Sent|Message for arunk272@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4316|eCAS_MutualFunds@manipaltechnologies.com|arunk289217@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:29|53.3 KB|Sent|Message for arunk289217@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4317|eCAS_MutualFunds@manipaltechnologies.com|arunk2920@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:30|61.31 KB|Sent|Message for arunk2920@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4318|eCAS_MutualFunds@manipaltechnologies.com|arunk296@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:32|64.96 KB|Sent|Message for arunk296@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4319|eCAS_MutualFunds@manipaltechnologies.com|arunk323umar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:33|63.71 KB|Sent|Message for arunk323umar@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4320|eCAS_MutualFunds@manipaltechnologies.com|arunk323umar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:34|65.75 KB|Sent|Message for arunk323umar@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4321|eCAS_MutualFunds@manipaltechnologies.com|arunk34013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:35|76.8 KB|Sent|Message for arunk34013@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4322|eCAS_MutualFunds@manipaltechnologies.com|arunk37978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:36|75.16 KB|Sent|Message for arunk37978@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4323|eCAS_MutualFunds@manipaltechnologies.com|arunk3809@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:38|54.84 KB|Sent|Message for arunk3809@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4324|eCAS_MutualFunds@manipaltechnologies.com|arunk398675@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:39|49.43 KB|Sent|Message for arunk398675@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4325|eCAS_MutualFunds@manipaltechnologies.com|arunk411027@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:40|67.82 KB|Sent|Message for arunk411027@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4326|eCAS_MutualFunds@manipaltechnologies.com|arunk417361@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:41|64.35 KB|Sent|Message for arunk417361@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4327|eCAS_MutualFunds@manipaltechnologies.com|arunk41959@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:42|61.69 KB|Sent|Message for arunk41959@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4328|eCAS_MutualFunds@manipaltechnologies.com|arunk42141@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:43|52.61 KB|Sent|Message for arunk42141@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4329|eCAS_MutualFunds@manipaltechnologies.com|arunk4264@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:45|50.38 KB|Sent|Message for arunk4264@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4330|eCAS_MutualFunds@manipaltechnologies.com|arunk4625@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:46|61.57 KB|Sent|Message for arunk4625@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4331|eCAS_MutualFunds@manipaltechnologies.com|arunk47767@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:47|50.66 KB|Sent|Message for arunk47767@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4332|eCAS_MutualFunds@manipaltechnologies.com|arunk49441@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:48|51.82 KB|Sent|Message for arunk49441@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4333|eCAS_MutualFunds@manipaltechnologies.com|arunk5074@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:49|75.66 KB|Sent|Message for arunk5074@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4334|eCAS_MutualFunds@manipaltechnologies.com|arunk54754@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:51|50.02 KB|Sent|Message for arunk54754@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4335|eCAS_MutualFunds@manipaltechnologies.com|arunk557562@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:52|51.8 KB|Sent|Message for arunk557562@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4336|eCAS_MutualFunds@manipaltechnologies.com|arunk58390@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:53|51.18 KB|Sent|Message for arunk58390@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4337|eCAS_MutualFunds@manipaltechnologies.com|arunk6058@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:54|59.11 KB|Sent|Message for arunk6058@gmail.com accepted by 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4338|eCAS_MutualFunds@manipaltechnologies.com|arunk64269@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:55|60.85 KB|Sent|Message for arunk64269@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4339|eCAS_MutualFunds@manipaltechnologies.com|arunk65@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:56|64.47 KB|Sent|Message for arunk65@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +4340|eCAS_MutualFunds@manipaltechnologies.com|arunk68531@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:58|53.44 KB|Sent|Message for arunk68531@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4341|eCAS_MutualFunds@manipaltechnologies.com|arunk703244@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:23:59|49.83 KB|Sent|Message for arunk703244@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4342|eCAS_MutualFunds@manipaltechnologies.com|arunk812908@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:00|57.53 KB|Sent|Message for arunk812908@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4343|eCAS_MutualFunds@manipaltechnologies.com|arunk8289@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:01|51.55 KB|Sent|Message for arunk8289@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4344|eCAS_MutualFunds@manipaltechnologies.com|arunk8899@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:02|51.57 KB|Sent|Message for arunk8899@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4345|eCAS_MutualFunds@manipaltechnologies.com|arunk903970@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:03|49.99 KB|Sent|Message for arunk903970@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4346|eCAS_MutualFunds@manipaltechnologies.com|arunk94355@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:04|53.93 KB|Sent|Message for arunk94355@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4347|eCAS_MutualFunds@manipaltechnologies.com|arunk9772@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:06|50.63 KB|Sent|Message for arunk9772@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4348|eCAS_MutualFunds@manipaltechnologies.com|arunk980978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:07|55.94 KB|Sent|Message for arunk980978@gmail.com accepted by 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4349|eCAS_MutualFunds@manipaltechnologies.com|arunk@iitk.ac.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:08|54.01 KB|Sent|Message for arunk@iitk.ac.in accepted by 202.3.77.90:25 (mailo.iitk.ac.in) +4350|eCAS_MutualFunds@manipaltechnologies.com|arunk_pradhan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:09|65.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta5.am0.yahoodns.net) +4350|eCAS_MutualFunds@manipaltechnologies.com|arunk_pradhan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:09|65.15 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4350|eCAS_MutualFunds@manipaltechnologies.com|arunk_pradhan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:09|65.15 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4350|eCAS_MutualFunds@manipaltechnologies.com|arunk_pradhan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:09|65.15 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4350|eCAS_MutualFunds@manipaltechnologies.com|arunk_pradhan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:09|65.15 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4350|eCAS_MutualFunds@manipaltechnologies.com|arunk_pradhan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:09|65.15 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +4350|eCAS_MutualFunds@manipaltechnologies.com|arunk_pradhan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:09|65.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta7.am0.yahoodns.net) +4350|eCAS_MutualFunds@manipaltechnologies.com|arunk_pradhan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:09|65.15 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta6.am0.yahoodns.net) +4350|eCAS_MutualFunds@manipaltechnologies.com|arunk_pradhan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:09|65.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4350|eCAS_MutualFunds@manipaltechnologies.com|arunk_pradhan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:09|65.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4350|eCAS_MutualFunds@manipaltechnologies.com|arunk_pradhan@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:09|65.15 KB|Sent|Message for arunk_pradhan@yahoo.com accepted by 67.195.228.110:25 (mta7.am0.yahoodns.net) +4351|eCAS_MutualFunds@manipaltechnologies.com|arunk_tiwari79@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:10|67.07 KB|Sent|Message for arunk_tiwari79@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4352|eCAS_MutualFunds@manipaltechnologies.com|arunk_zealers@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:12|70.63 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4352|eCAS_MutualFunds@manipaltechnologies.com|arunk_zealers@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:12|70.63 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4352|eCAS_MutualFunds@manipaltechnologies.com|arunk_zealers@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:12|70.63 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4352|eCAS_MutualFunds@manipaltechnologies.com|arunk_zealers@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:12|70.63 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4352|eCAS_MutualFunds@manipaltechnologies.com|arunk_zealers@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:12|70.63 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4352|eCAS_MutualFunds@manipaltechnologies.com|arunk_zealers@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:12|70.63 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4352|eCAS_MutualFunds@manipaltechnologies.com|arunk_zealers@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:12|70.63 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4352|eCAS_MutualFunds@manipaltechnologies.com|arunk_zealers@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:12|70.63 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4352|eCAS_MutualFunds@manipaltechnologies.com|arunk_zealers@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:12|70.63 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4352|eCAS_MutualFunds@manipaltechnologies.com|arunk_zealers@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:12|70.63 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4352|eCAS_MutualFunds@manipaltechnologies.com|arunk_zealers@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:12|70.63 KB|Sent|Message for arunk_zealers@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4353|eCAS_MutualFunds@manipaltechnologies.com|arunkabi80@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:13|56.4 KB|HardFail|Permanent SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4354|eCAS_MutualFunds@manipaltechnologies.com|arunkabs85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:14|55.24 KB|Sent|Message for arunkabs85@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4355|eCAS_MutualFunds@manipaltechnologies.com|arunkadakam85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:15|57.74 KB|Sent|Message for arunkadakam85@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4356|eCAS_MutualFunds@manipaltechnologies.com|arunkadam082@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:16|57.16 KB|Sent|Message for arunkadam082@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4357|eCAS_MutualFunds@manipaltechnologies.com|arunkadam11486@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:17|61.26 KB|Sent|Message for arunkadam11486@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4358|eCAS_MutualFunds@manipaltechnologies.com|arunkadam2018@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:19|56.34 KB|Sent|Message for arunkadam2018@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4359|eCAS_MutualFunds@manipaltechnologies.com|arunkadu17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:20|56.38 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkadu17@gmail.com to suppression list because delivery has failed 18 times. +4360|eCAS_MutualFunds@manipaltechnologies.com|arunkadu195@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:21|51.17 KB|Sent|Message for arunkadu195@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4361|eCAS_MutualFunds@manipaltechnologies.com|arunkailaas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:22|73.81 KB|Sent|Message for arunkailaas@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4362|eCAS_MutualFunds@manipaltechnologies.com|arunkaipe@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:23|64.79 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4362|eCAS_MutualFunds@manipaltechnologies.com|arunkaipe@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:23|64.79 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4362|eCAS_MutualFunds@manipaltechnologies.com|arunkaipe@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:23|64.79 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4362|eCAS_MutualFunds@manipaltechnologies.com|arunkaipe@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:23|64.79 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4362|eCAS_MutualFunds@manipaltechnologies.com|arunkaipe@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:23|64.79 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4362|eCAS_MutualFunds@manipaltechnologies.com|arunkaipe@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:23|64.79 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4362|eCAS_MutualFunds@manipaltechnologies.com|arunkaipe@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:23|64.79 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4362|eCAS_MutualFunds@manipaltechnologies.com|arunkaipe@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:23|64.79 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4362|eCAS_MutualFunds@manipaltechnologies.com|arunkaipe@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:23|64.79 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4362|eCAS_MutualFunds@manipaltechnologies.com|arunkaipe@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:23|64.79 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4362|eCAS_MutualFunds@manipaltechnologies.com|arunkaipe@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:23|64.79 KB|Sent|Message for arunkaipe@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4363|eCAS_MutualFunds@manipaltechnologies.com|arunkakali1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:24|57.56 KB|Sent|Message for arunkakali1962@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4364|eCAS_MutualFunds@manipaltechnologies.com|arunkakde7080@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:26|60.71 KB|Sent|Message for arunkakde7080@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4365|eCAS_MutualFunds@manipaltechnologies.com|arunkakkar37@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:27|63.24 KB|Sent|Message for arunkakkar37@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4366|eCAS_MutualFunds@manipaltechnologies.com|arunkakkar37@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:28|59.32 KB|Sent|Message for arunkakkar37@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4367|eCAS_MutualFunds@manipaltechnologies.com|arunkakria1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:29|72.22 KB|Sent|Message for arunkakria1973@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4368|eCAS_MutualFunds@manipaltechnologies.com|arunkalal17september@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:30|54.49 KB|Sent|Message for arunkalal17september@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4369|eCAS_MutualFunds@manipaltechnologies.com|arunkale9422@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:31|52.42 KB|Sent|Message for arunkale9422@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4370|eCAS_MutualFunds@manipaltechnologies.com|arunkale9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:33|63.48 KB|Sent|Message for arunkale9@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4371|eCAS_MutualFunds@manipaltechnologies.com|arunkale@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:34|64.59 KB|Sent|Message for arunkale@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4372|eCAS_MutualFunds@manipaltechnologies.com|arunkalelar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:35|92.36 KB|Sent|Message for arunkalelar@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4373|eCAS_MutualFunds@manipaltechnologies.com|arunkalelkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:36|49.57 KB|Sent|Message for arunkalelkar@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4374|eCAS_MutualFunds@manipaltechnologies.com|arunkalia628@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:37|62.57 KB|Sent|Message for arunkalia628@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4375|eCAS_MutualFunds@manipaltechnologies.com|arunkalindi1982@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:39|60.92 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta5.am0.yahoodns.net) +4375|eCAS_MutualFunds@manipaltechnologies.com|arunkalindi1982@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:39|60.92 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +4375|eCAS_MutualFunds@manipaltechnologies.com|arunkalindi1982@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:39|60.92 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4375|eCAS_MutualFunds@manipaltechnologies.com|arunkalindi1982@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:39|60.92 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4375|eCAS_MutualFunds@manipaltechnologies.com|arunkalindi1982@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:39|60.92 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4375|eCAS_MutualFunds@manipaltechnologies.com|arunkalindi1982@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:39|60.92 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +4375|eCAS_MutualFunds@manipaltechnologies.com|arunkalindi1982@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:39|60.92 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +4375|eCAS_MutualFunds@manipaltechnologies.com|arunkalindi1982@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:39|60.92 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +4375|eCAS_MutualFunds@manipaltechnologies.com|arunkalindi1982@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:39|60.92 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4375|eCAS_MutualFunds@manipaltechnologies.com|arunkalindi1982@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:39|60.92 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4375|eCAS_MutualFunds@manipaltechnologies.com|arunkalindi1982@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:39|60.92 KB|Sent|Message for arunkalindi1982@yahoo.com accepted by 67.195.228.110:25 (mta7.am0.yahoodns.net) +4376|eCAS_MutualFunds@manipaltechnologies.com|arunkalish07@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:40|49.37 KB|Sent|Message for arunkalish07@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4377|eCAS_MutualFunds@manipaltechnologies.com|arunkalita372@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:41|60.69 KB|Sent|Message for arunkalita372@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4378|eCAS_MutualFunds@manipaltechnologies.com|arunkalita372@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:42|60.64 KB|Sent|Message for arunkalita372@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4379|eCAS_MutualFunds@manipaltechnologies.com|arunkalita9954@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:43|51.88 KB|Sent|Message for arunkalita9954@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4380|eCAS_MutualFunds@manipaltechnologies.com|arunkaliyan71@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:44|91.92 KB|Sent|Message for arunkaliyan71@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4381|eCAS_MutualFunds@manipaltechnologies.com|arunkalkhundiya.05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:46|51.57 KB|Sent|Message for arunkalkhundiya.05@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4382|eCAS_MutualFunds@manipaltechnologies.com|arunkallaril@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:47|62.63 KB|Sent|Message for arunkallaril@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4383|eCAS_MutualFunds@manipaltechnologies.com|arunkallat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:48|86.31 KB|Sent|Message for arunkallat@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4384|eCAS_MutualFunds@manipaltechnologies.com|arunkallyani27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:49|48.98 KB|Sent|Message for arunkallyani27@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4385|eCAS_MutualFunds@manipaltechnologies.com|arunkalra1974@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:50|66.19 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +4385|eCAS_MutualFunds@manipaltechnologies.com|arunkalra1974@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:50|66.19 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +4385|eCAS_MutualFunds@manipaltechnologies.com|arunkalra1974@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:50|66.19 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4385|eCAS_MutualFunds@manipaltechnologies.com|arunkalra1974@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:50|66.19 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4385|eCAS_MutualFunds@manipaltechnologies.com|arunkalra1974@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:50|66.19 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta7.am0.yahoodns.net) +4385|eCAS_MutualFunds@manipaltechnologies.com|arunkalra1974@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:50|66.19 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +4385|eCAS_MutualFunds@manipaltechnologies.com|arunkalra1974@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:50|66.19 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta5.am0.yahoodns.net) +4385|eCAS_MutualFunds@manipaltechnologies.com|arunkalra1974@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:50|66.19 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4385|eCAS_MutualFunds@manipaltechnologies.com|arunkalra1974@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:50|66.19 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta6.am0.yahoodns.net) +4385|eCAS_MutualFunds@manipaltechnologies.com|arunkalra1974@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:50|66.19 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4385|eCAS_MutualFunds@manipaltechnologies.com|arunkalra1974@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:50|66.19 KB|Sent|Message for arunkalra1974@yahoo.com accepted by 98.136.96.77:25 (mta6.am0.yahoodns.net) +4386|eCAS_MutualFunds@manipaltechnologies.com|arunkalsi@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:51|69.55 KB|Sent|Message for arunkalsi@hotmail.com accepted by 52.101.9.15:25 (hotmail-com.olc.protection.outlook.com) +4387|eCAS_MutualFunds@manipaltechnologies.com|arunkalyane07@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:53|49.36 KB|Sent|Message for arunkalyane07@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4388|eCAS_MutualFunds@manipaltechnologies.com|arunkalyani1982@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:54|58.11 KB|Sent|Message for arunkalyani1982@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4389|eCAS_MutualFunds@manipaltechnologies.com|arunkamat45613@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:55|52.91 KB|Sent|Message for arunkamat45613@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4390|eCAS_MutualFunds@manipaltechnologies.com|arunkamath1952@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:56|54.5 KB|Sent|Message for arunkamath1952@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4391|eCAS_MutualFunds@manipaltechnologies.com|arunkamb9421@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:57|74.44 KB|Sent|Message for arunkamb9421@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4392|eCAS_MutualFunds@manipaltechnologies.com|arunkamble169@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:24:58|57.14 KB|Sent|Message for arunkamble169@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4393|eCAS_MutualFunds@manipaltechnologies.com|arunkamble800@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:00|49.96 KB|Sent|Message for arunkamble800@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4394|eCAS_MutualFunds@manipaltechnologies.com|arunkamboj362@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:01|56.83 KB|Sent|Message for arunkamboj362@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4395|eCAS_MutualFunds@manipaltechnologies.com|arunkamraj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:02|51.99 KB|Sent|Message for arunkamraj@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4396|eCAS_MutualFunds@manipaltechnologies.com|arunkanade.mum@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:03|70.33 KB|Sent|Message for arunkanade.mum@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4397|eCAS_MutualFunds@manipaltechnologies.com|arunkanchan.arun6@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:04|55.81 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkanchan.arun6@gmail.com to suppression list because delivery has failed 18 times. +4398|eCAS_MutualFunds@manipaltechnologies.com|arunkanda30@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:06|62.34 KB|Sent|Message for arunkanda30@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4399|eCAS_MutualFunds@manipaltechnologies.com|arunkandhari1994@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:07|89.73 KB|Sent|Message for arunkandhari1994@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4400|eCAS_MutualFunds@manipaltechnologies.com|arunkandoi77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:08|63.01 KB|Sent|Message for arunkandoi77@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4401|eCAS_MutualFunds@manipaltechnologies.com|arunkandoihuf@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:09|56.26 KB|Sent|Message for arunkandoihuf@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4402|eCAS_MutualFunds@manipaltechnologies.com|arunkanimano@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:10|66.69 KB|Sent|Message for arunkanimano@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4403|eCAS_MutualFunds@manipaltechnologies.com|arunkannan1990@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:11|61.31 KB|Sent|Message for arunkannan1990@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4404|eCAS_MutualFunds@manipaltechnologies.com|arunkanoi77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:13|61.5 KB|Sent|Message for arunkanoi77@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4405|eCAS_MutualFunds@manipaltechnologies.com|arunkanrar2017@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:14|78.87 KB|Sent|Message for arunkanrar2017@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4406|eCAS_MutualFunds@manipaltechnologies.com|arunkant.thakur@licindia.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:15|78.01 KB|Sent|Message for arunkant.thakur@licindia.com accepted by 115.111.143.83:25 (mail181.licindia.com) +4407|eCAS_MutualFunds@manipaltechnologies.com|arunkant002@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:16|66.24 KB|Sent|Message for arunkant002@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4408|eCAS_MutualFunds@manipaltechnologies.com|arunkant221066@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:17|52.5 KB|Sent|Message for arunkant221066@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4409|eCAS_MutualFunds@manipaltechnologies.com|arunkantapanda4u@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:19|64.54 KB|Sent|Message for arunkantapanda4u@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4410|eCAS_MutualFunds@manipaltechnologies.com|arunkantfootball@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:20|95.44 KB|Sent|Message for arunkantfootball@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4411|eCAS_MutualFunds@manipaltechnologies.com|arunkantgulati@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:21|65.09 KB|Sent|Message for arunkantgulati@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4412|eCAS_MutualFunds@manipaltechnologies.com|arunkanth.irs@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:22|50.12 KB|Sent|Message for arunkanth.irs@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4413|eCAS_MutualFunds@manipaltechnologies.com|arunkanth.m@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:23|49.61 KB|Sent|Message for arunkanth.m@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4414|eCAS_MutualFunds@manipaltechnologies.com|arunkanti.kar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:24|63.93 KB|Sent|Message for arunkanti.kar@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4415|eCAS_MutualFunds@manipaltechnologies.com|arunkanti54@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:26|65.2 KB|Sent|Message for arunkanti54@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4416|eCAS_MutualFunds@manipaltechnologies.com|arunkanti989@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:27|72.13 KB|Sent|Message for arunkanti989@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4417|eCAS_MutualFunds@manipaltechnologies.com|arunkantifulia@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:28|63.08 KB|Sent|Message for arunkantifulia@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4418|eCAS_MutualFunds@manipaltechnologies.com|arunkantikumar52@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:29|72.95 KB|Sent|Message for arunkantikumar52@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4419|eCAS_MutualFunds@manipaltechnologies.com|arunkantim55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:30|81.31 KB|Sent|Message for arunkantim55@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4420|eCAS_MutualFunds@manipaltechnologies.com|arunkantirajkumar39@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:32|51.73 KB|Sent|Message for arunkantirajkumar39@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4421|eCAS_MutualFunds@manipaltechnologies.com|arunkanwar44@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:33|61.63 KB|Sent|Message for arunkanwar44@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4422|eCAS_MutualFunds@manipaltechnologies.com|arunkapur2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:34|51.51 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta5.am0.yahoodns.net) +4422|eCAS_MutualFunds@manipaltechnologies.com|arunkapur2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:34|51.51 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4422|eCAS_MutualFunds@manipaltechnologies.com|arunkapur2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:34|51.51 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4422|eCAS_MutualFunds@manipaltechnologies.com|arunkapur2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:34|51.51 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4422|eCAS_MutualFunds@manipaltechnologies.com|arunkapur2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:34|51.51 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta7.am0.yahoodns.net) +4422|eCAS_MutualFunds@manipaltechnologies.com|arunkapur2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:34|51.51 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +4422|eCAS_MutualFunds@manipaltechnologies.com|arunkapur2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:34|51.51 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +4422|eCAS_MutualFunds@manipaltechnologies.com|arunkapur2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:34|51.51 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4422|eCAS_MutualFunds@manipaltechnologies.com|arunkapur2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:34|51.51 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +4422|eCAS_MutualFunds@manipaltechnologies.com|arunkapur2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:34|51.51 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4422|eCAS_MutualFunds@manipaltechnologies.com|arunkapur2000@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:34|51.51 KB|Sent|Message for arunkapur2000@yahoo.com accepted by 98.136.96.77:25 (mta6.am0.yahoodns.net) +4423|eCAS_MutualFunds@manipaltechnologies.com|arunkarak25@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:35|52.3 KB|Sent|Message for arunkarak25@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4424|eCAS_MutualFunds@manipaltechnologies.com|arunkarak@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:36|51.77 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta5.am0.yahoodns.net) +4424|eCAS_MutualFunds@manipaltechnologies.com|arunkarak@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:36|51.77 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4424|eCAS_MutualFunds@manipaltechnologies.com|arunkarak@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:36|51.77 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4424|eCAS_MutualFunds@manipaltechnologies.com|arunkarak@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:36|51.77 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4424|eCAS_MutualFunds@manipaltechnologies.com|arunkarak@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:36|51.77 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta7.am0.yahoodns.net) +4424|eCAS_MutualFunds@manipaltechnologies.com|arunkarak@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:36|51.77 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +4424|eCAS_MutualFunds@manipaltechnologies.com|arunkarak@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:36|51.77 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta5.am0.yahoodns.net) +4424|eCAS_MutualFunds@manipaltechnologies.com|arunkarak@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:36|51.77 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4424|eCAS_MutualFunds@manipaltechnologies.com|arunkarak@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:36|51.77 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta6.am0.yahoodns.net) +4424|eCAS_MutualFunds@manipaltechnologies.com|arunkarak@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:36|51.77 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4424|eCAS_MutualFunds@manipaltechnologies.com|arunkarak@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:36|51.77 KB|Sent|Message for arunkarak@yahoo.com accepted by 98.136.96.77:25 (mta6.am0.yahoodns.net) +4425|eCAS_MutualFunds@manipaltechnologies.com|arunkarale59@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:37|48.67 KB|HardFail|Permanent SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4426|eCAS_MutualFunds@manipaltechnologies.com|arunkarbotkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:39|55.29 KB|Sent|Message for arunkarbotkar@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4427|eCAS_MutualFunds@manipaltechnologies.com|arunkarikanthra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:40|66.33 KB|Sent|Message for arunkarikanthra@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|No SMTP servers were available for vsnl.com. Tried vsnl.com. +4428|eCAS_MutualFunds@manipaltechnologies.com|arunkarkare@vsnl.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:41|57.0 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkarkare@vsnl.com to suppression list because delivery has failed 18 times. +4429|eCAS_MutualFunds@manipaltechnologies.com|arunkarki97@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:42|56.53 KB|Sent|Message for arunkarki97@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4430|eCAS_MutualFunds@manipaltechnologies.com|arunkarmakar140@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:43|52.3 KB|Sent|Message for arunkarmakar140@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4431|eCAS_MutualFunds@manipaltechnologies.com|arunkarmakar182@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:44|62.64 KB|Sent|Message for arunkarmakar182@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4432|eCAS_MutualFunds@manipaltechnologies.com|arunkarmakar204@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:46|64.17 KB|Sent|Message for arunkarmakar204@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4433|eCAS_MutualFunds@manipaltechnologies.com|arunkarmakar6107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:47|72.06 KB|Sent|Message for arunkarmakar6107@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4434|eCAS_MutualFunds@manipaltechnologies.com|arunkarn318@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:48|51.91 KB|Sent|Message for arunkarn318@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4435|eCAS_MutualFunds@manipaltechnologies.com|arunkarsan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:49|74.37 KB|Sent|Message for arunkarsan@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4436|eCAS_MutualFunds@manipaltechnologies.com|arunkartha2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:50|54.91 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta7.am0.yahoodns.net) +4436|eCAS_MutualFunds@manipaltechnologies.com|arunkartha2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:50|54.91 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta5.am0.yahoodns.net) +4436|eCAS_MutualFunds@manipaltechnologies.com|arunkartha2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:50|54.91 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4436|eCAS_MutualFunds@manipaltechnologies.com|arunkartha2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:50|54.91 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4436|eCAS_MutualFunds@manipaltechnologies.com|arunkartha2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:50|54.91 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4436|eCAS_MutualFunds@manipaltechnologies.com|arunkartha2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:50|54.91 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4436|eCAS_MutualFunds@manipaltechnologies.com|arunkartha2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:50|54.91 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4436|eCAS_MutualFunds@manipaltechnologies.com|arunkartha2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:50|54.91 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta7.am0.yahoodns.net) +4436|eCAS_MutualFunds@manipaltechnologies.com|arunkartha2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:50|54.91 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4436|eCAS_MutualFunds@manipaltechnologies.com|arunkartha2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:50|54.91 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4436|eCAS_MutualFunds@manipaltechnologies.com|arunkartha2001@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:50|54.91 KB|Sent|Message for arunkartha2001@yahoo.com accepted by 67.195.228.111:25 (mta5.am0.yahoodns.net) +4437|eCAS_MutualFunds@manipaltechnologies.com|arunkarthi733@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:51|54.45 KB|Sent|Message for arunkarthi733@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4438|eCAS_MutualFunds@manipaltechnologies.com|arunkarthic9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:53|65.2 KB|Sent|Message for arunkarthic9@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4439|eCAS_MutualFunds@manipaltechnologies.com|arunkarthick.b@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:54|56.99 KB|Sent|Message for arunkarthick.b@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +4440|eCAS_MutualFunds@manipaltechnologies.com|arunkarthick.bodi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:55|78.0 KB|Sent|Message for arunkarthick.bodi@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4441|eCAS_MutualFunds@manipaltechnologies.com|arunkarthick559@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:56|51.31 KB|Sent|Message for arunkarthick559@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4442|eCAS_MutualFunds@manipaltechnologies.com|arunkarthickkb@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:57|60.27 KB|Sent|Message for arunkarthickkb@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4443|eCAS_MutualFunds@manipaltechnologies.com|arunkarthickraj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:25:59|61.5 KB|Sent|Message for arunkarthickraj@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4444|eCAS_MutualFunds@manipaltechnologies.com|arunkarthik.cr7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:00|56.26 KB|Sent|Message for arunkarthik.cr7@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4445|eCAS_MutualFunds@manipaltechnologies.com|arunkarthikas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:01|53.78 KB|Sent|Message for arunkarthikas@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4446|eCAS_MutualFunds@manipaltechnologies.com|arunkarthikeyan.ak@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:02|66.66 KB|Sent|Message for arunkarthikeyan.ak@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4447|eCAS_MutualFunds@manipaltechnologies.com|arunkarthy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:03|68.59 KB|Sent|Message for arunkarthy@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta7.am0.yahoodns.net) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta6.am0.yahoodns.net) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta5.am0.yahoodns.net) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta6.am0.yahoodns.net) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta6.am0.yahoodns.net) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta6.am0.yahoodns.net) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta5.am0.yahoodns.net) +4448|eCAS_MutualFunds@manipaltechnologies.com|arunkarukayil@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:04|98.54 KB|Sent|Message for arunkarukayil@ymail.com accepted by 98.136.96.77:25 (mta6.am0.yahoodns.net) +4449|eCAS_MutualFunds@manipaltechnologies.com|arunkarunakaran08@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:06|58.58 KB|Sent|Message for arunkarunakaran08@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4450|eCAS_MutualFunds@manipaltechnologies.com|arunkasabe55@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:07|65.77 KB|Sent|Message for arunkasabe55@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4451|eCAS_MutualFunds@manipaltechnologies.com|arunkashuv1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:08|53.63 KB|Sent|Message for arunkashuv1978@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4452|eCAS_MutualFunds@manipaltechnologies.com|arunkashyap1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:09|55.12 KB|Sent|Message for arunkashyap1@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4453|eCAS_MutualFunds@manipaltechnologies.com|arunkashyap29@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:10|56.05 KB|Sent|Message for arunkashyap29@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4454|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:12|76.88 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta5.am0.yahoodns.net) +4454|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:12|76.88 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +4454|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:12|76.88 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4454|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:12|76.88 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4454|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:12|76.88 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4454|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:12|76.88 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4454|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:12|76.88 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4454|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:12|76.88 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta7.am0.yahoodns.net) +4454|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:12|76.88 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4454|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:12|76.88 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4454|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:12|76.88 KB|Sent|Message for arunkastur@yahoo.com accepted by 67.195.228.111:25 (mta5.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta5.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta5.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta7.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta5.am0.yahoodns.net) +4455|eCAS_MutualFunds@manipaltechnologies.com|arunkastur@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:13|64.91 KB|Sent|Message for arunkastur@yahoo.com accepted by 98.136.96.76:25 (mta6.am0.yahoodns.net) +4456|eCAS_MutualFunds@manipaltechnologies.com|arunkataria2007@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:14|67.98 KB|Sent|Message for arunkataria2007@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4457|eCAS_MutualFunds@manipaltechnologies.com|arunkatdare@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:15|67.15 KB|Sent|Message for arunkatdare@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4458|eCAS_MutualFunds@manipaltechnologies.com|arunkathuri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:16|69.6 KB|Sent|Message for arunkathuri@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4459|eCAS_MutualFunds@manipaltechnologies.com|arunkatiyar1974@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:17|50.79 KB|Sent|Message for arunkatiyar1974@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4460|eCAS_MutualFunds@manipaltechnologies.com|arunkatiyar1974@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:19|59.62 KB|Sent|Message for arunkatiyar1974@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4461|eCAS_MutualFunds@manipaltechnologies.com|arunkatoch49@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:20|67.28 KB|Sent|Message for arunkatoch49@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4462|eCAS_MutualFunds@manipaltechnologies.com|arunkatorestar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:21|51.14 KB|Sent|Message for arunkatorestar@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4463|eCAS_MutualFunds@manipaltechnologies.com|arunkaul@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:22|54.6 KB|Sent|Message for arunkaul@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4464|eCAS_MutualFunds@manipaltechnologies.com|arunkaushal21@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:23|56.76 KB|Sent|Message for arunkaushal21@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4465|eCAS_MutualFunds@manipaltechnologies.com|arunkaushal25@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:25|56.57 KB|Sent|Message for arunkaushal25@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4466|eCAS_MutualFunds@manipaltechnologies.com|arunkaushal7007@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:26|63.96 KB|Sent|Message for arunkaushal7007@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4467|eCAS_MutualFunds@manipaltechnologies.com|arunkavi7477@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:27|79.87 KB|Sent|Message for arunkavi7477@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4468|eCAS_MutualFunds@manipaltechnologies.com|arunkawale39@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:28|49.01 KB|Sent|Message for arunkawale39@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4469|eCAS_MutualFunds@manipaltechnologies.com|arunkawale39@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:29|57.46 KB|Sent|Message for arunkawale39@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4470|eCAS_MutualFunds@manipaltechnologies.com|arunkayande1111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:30|57.24 KB|Sent|Message for arunkayande1111@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4471|eCAS_MutualFunds@manipaltechnologies.com|arunkba1b2c3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:32|56.88 KB|Sent|Message for arunkba1b2c3@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4472|eCAS_MutualFunds@manipaltechnologies.com|arunkbajitpur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:33|75.84 KB|Sent|Message for arunkbajitpur@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|No SMTP servers were available for indiatimes.com. Tried bounce.indiatimes.com. +4473|eCAS_MutualFunds@manipaltechnologies.com|arunkbarthwal@indiatimes.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:34|53.78 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkbarthwal@indiatimes.com to suppression list because delivery has failed 18 times. +4474|eCAS_MutualFunds@manipaltechnologies.com|arunkbcbs@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:35|53.64 KB|Sent|Message for arunkbcbs@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4475|eCAS_MutualFunds@manipaltechnologies.com|arunkbehera1695@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:36|69.3 KB|Sent|Message for arunkbehera1695@gmail.com accepted by 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4476|eCAS_MutualFunds@manipaltechnologies.com|arunkbharti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:37|53.36 KB|Sent|Message for arunkbharti@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4477|eCAS_MutualFunds@manipaltechnologies.com|arunkc98@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:39|60.96 KB|Sent|Message for arunkc98@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4478|eCAS_MutualFunds@manipaltechnologies.com|arunkchau.1180@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:40|66.96 KB|Sent|Message for arunkchau.1180@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4479|eCAS_MutualFunds@manipaltechnologies.com|arunkchoudhary1961@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:41|57.29 KB|Sent|Message for arunkchoudhary1961@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4480|eCAS_MutualFunds@manipaltechnologies.com|arunkchoudharyaryan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:42|55.32 KB|Sent|Message for arunkchoudharyaryan@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4481|eCAS_MutualFunds@manipaltechnologies.com|arunkct06@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:43|71.17 KB|Sent|Message for arunkct06@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4482|eCAS_MutualFunds@manipaltechnologies.com|arunkd1212@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:45|68.94 KB|Sent|Message for arunkd1212@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4483|eCAS_MutualFunds@manipaltechnologies.com|arunkdas1958@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:46|61.38 KB|Sent|Message for arunkdas1958@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4484|eCAS_MutualFunds@manipaltechnologies.com|arunkdash842@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:47|60.85 KB|Sent|Message for arunkdash842@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4485|eCAS_MutualFunds@manipaltechnologies.com|arunkdatta@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:48|53.59 KB|Sent|Message for arunkdatta@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta7.am0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta5.am0.yahoodns.net) +4486|eCAS_MutualFunds@manipaltechnologies.com|arunkdubey@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:49|48.67 KB|HardFail|Permanent SMTP delivery error when sending to 98.136.96.76:25 (mta6.am0.yahoodns.net) +4487|eCAS_MutualFunds@manipaltechnologies.com|arunkdwivedi00999@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:50|66.23 KB|Sent|Message for arunkdwivedi00999@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4488|eCAS_MutualFunds@manipaltechnologies.com|arunkedar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:52|67.75 KB|Sent|Message for arunkedar@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4489|eCAS_MutualFunds@manipaltechnologies.com|arunkedare62@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:53|61.27 KB|Sent|Message for arunkedare62@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4490|eCAS_MutualFunds@manipaltechnologies.com|arunkedare62@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:54|75.26 KB|Sent|Message for arunkedare62@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4491|eCAS_MutualFunds@manipaltechnologies.com|arunkedia159@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:55|65.21 KB|Sent|Message for arunkedia159@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4492|eCAS_MutualFunds@manipaltechnologies.com|arunkedia16@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:56|58.04 KB|Sent|Message for arunkedia16@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4493|eCAS_MutualFunds@manipaltechnologies.com|arunkeeppottil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:57|57.74 KB|Sent|Message for arunkeeppottil@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4494|eCAS_MutualFunds@manipaltechnologies.com|arunkeerthi.js@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:26:59|62.08 KB|Sent|Message for arunkeerthi.js@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4495|eCAS_MutualFunds@manipaltechnologies.com|arunkeni7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:00|60.43 KB|Sent|Message for arunkeni7@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4496|eCAS_MutualFunds@manipaltechnologies.com|arunkenya@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:01|97.88 KB|Sent|Message for arunkenya@hotmail.com accepted by 52.101.42.5:25 (hotmail-com.olc.protection.outlook.com) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta7.am0.yahoodns.net) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta5.am0.yahoodns.net) +4497|eCAS_MutualFunds@manipaltechnologies.com|arunkeral@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:02|47.04 KB|Sent|Message for arunkeral@yahoo.com accepted by 98.136.96.76:25 (mta6.am0.yahoodns.net) +4498|eCAS_MutualFunds@manipaltechnologies.com|arunkerketta66@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:03|63.02 KB|Sent|Message for arunkerketta66@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4499|eCAS_MutualFunds@manipaltechnologies.com|arunkesalkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:05|61.43 KB|Sent|Message for arunkesalkar@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4500|eCAS_MutualFunds@manipaltechnologies.com|arunkesarkar123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:06|49.9 KB|Sent|Message for arunkesarkar123@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4501|eCAS_MutualFunds@manipaltechnologies.com|arunkesarwani007@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:07|68.63 KB|Sent|Message for arunkesarwani007@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4502|eCAS_MutualFunds@manipaltechnologies.com|arunkesta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:08|57.2 KB|Sent|Message for arunkesta@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4503|eCAS_MutualFunds@manipaltechnologies.com|arunkg06@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:09|59.62 KB|Sent|Message for arunkg06@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4504|eCAS_MutualFunds@manipaltechnologies.com|arunkg17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:10|74.6 KB|Sent|Message for arunkg17@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4505|eCAS_MutualFunds@manipaltechnologies.com|arunkg73@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:12|55.04 KB|Sent|Message for arunkg73@gmail.com accepted by 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4506|eCAS_MutualFunds@manipaltechnologies.com|arunkgrad@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:13|57.77 KB|Sent|Message for arunkgrad@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4507|eCAS_MutualFunds@manipaltechnologies.com|arunkgupta1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:14|87.08 KB|Sent|Message for arunkgupta1962@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4508|eCAS_MutualFunds@manipaltechnologies.com|arunkgupta1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:15|79.68 KB|Sent|Message for arunkgupta1962@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4509|eCAS_MutualFunds@manipaltechnologies.com|arunkgupta1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:16|84.32 KB|Sent|Message for arunkgupta1962@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4510|eCAS_MutualFunds@manipaltechnologies.com|arunkgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:17|76.22 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4510|eCAS_MutualFunds@manipaltechnologies.com|arunkgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:17|76.22 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4510|eCAS_MutualFunds@manipaltechnologies.com|arunkgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:17|76.22 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4510|eCAS_MutualFunds@manipaltechnologies.com|arunkgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:17|76.22 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +4510|eCAS_MutualFunds@manipaltechnologies.com|arunkgupta@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:17|76.22 KB|Sent|Message for arunkgupta@yahoo.com accepted by 67.195.204.72:25 (mta5.am0.yahoodns.net) +4511|eCAS_MutualFunds@manipaltechnologies.com|arunkhaba1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:19|63.43 KB|Sent|Message for arunkhaba1@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4512|eCAS_MutualFunds@manipaltechnologies.com|arunkhagaul1961@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:20|62.31 KB|Sent|Message for arunkhagaul1961@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4513|eCAS_MutualFunds@manipaltechnologies.com|arunkhairnar2312@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:21|57.06 KB|Sent|Message for arunkhairnar2312@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4514|eCAS_MutualFunds@manipaltechnologies.com|arunkhairnar9360@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:22|67.09 KB|Sent|Message for arunkhairnar9360@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4515|eCAS_MutualFunds@manipaltechnologies.com|arunkhajuria39@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:23|51.1 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4515|eCAS_MutualFunds@manipaltechnologies.com|arunkhajuria39@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:23|51.1 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4515|eCAS_MutualFunds@manipaltechnologies.com|arunkhajuria39@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:23|51.1 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4515|eCAS_MutualFunds@manipaltechnologies.com|arunkhajuria39@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:23|51.1 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +4515|eCAS_MutualFunds@manipaltechnologies.com|arunkhajuria39@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:23|51.1 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.204.72:25 (mta5.am0.yahoodns.net) +4516|eCAS_MutualFunds@manipaltechnologies.com|arunkhalane947@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:25|59.91 KB|Sent|Message for arunkhalane947@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4517|eCAS_MutualFunds@manipaltechnologies.com|arunkhamkar1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:26|67.32 KB|Sent|Message for arunkhamkar1@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4518|eCAS_MutualFunds@manipaltechnologies.com|arunkhanapur81061@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:27|58.42 KB|Sent|Message for arunkhanapur81061@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4519|eCAS_MutualFunds@manipaltechnologies.com|arunkhanna1951@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:28|61.97 KB|Sent|Message for arunkhanna1951@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4520|eCAS_MutualFunds@manipaltechnologies.com|arunkhanna541@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:29|63.05 KB|Sent|Message for arunkhanna541@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4521|eCAS_MutualFunds@manipaltechnologies.com|arunkhanna60@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:30|51.69 KB|Sent|Message for arunkhanna60@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4522|eCAS_MutualFunds@manipaltechnologies.com|arunkhanna7318@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:32|51.83 KB|Sent|Message for arunkhanna7318@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +4523|eCAS_MutualFunds@manipaltechnologies.com|arunkhapare4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:33|57.27 KB|Sent|Message for arunkhapare4@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4524|eCAS_MutualFunds@manipaltechnologies.com|arunkharade990@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:34|67.06 KB|Sent|Message for arunkharade990@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4525|eCAS_MutualFunds@manipaltechnologies.com|arunkhari2013@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:35|72.68 KB|Sent|Message for arunkhari2013@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4526|eCAS_MutualFunds@manipaltechnologies.com|arunkhatri0154@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:36|57.12 KB|Sent|Message for arunkhatri0154@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4527|eCAS_MutualFunds@manipaltechnologies.com|arunkhatri535@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:38|48.0 KB|Sent|Message for arunkhatri535@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4528|eCAS_MutualFunds@manipaltechnologies.com|arunkhatrijdp80623@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:39|68.18 KB|Sent|Message for arunkhatrijdp80623@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4529|eCAS_MutualFunds@manipaltechnologies.com|arunkhatrijdp80623@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:40|63.65 KB|Sent|Message for arunkhatrijdp80623@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4530|eCAS_MutualFunds@manipaltechnologies.com|arunkhawar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:41|66.74 KB|Sent|Message for arunkhawar@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4531|eCAS_MutualFunds@manipaltechnologies.com|arunkhawdkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:42|53.84 KB|Sent|Message for arunkhawdkar@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4532|eCAS_MutualFunds@manipaltechnologies.com|arunkhedekar@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:43|60.55 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4532|eCAS_MutualFunds@manipaltechnologies.com|arunkhedekar@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:43|60.55 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4532|eCAS_MutualFunds@manipaltechnologies.com|arunkhedekar@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:43|60.55 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4532|eCAS_MutualFunds@manipaltechnologies.com|arunkhedekar@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:43|60.55 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4532|eCAS_MutualFunds@manipaltechnologies.com|arunkhedekar@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:43|60.55 KB|Sent|Message for arunkhedekar@ymail.com accepted by 67.195.228.109:25 (mta6.am0.yahoodns.net) +4533|eCAS_MutualFunds@manipaltechnologies.com|arunkhedkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:45|55.32 KB|Sent|Message for arunkhedkar@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4534|eCAS_MutualFunds@manipaltechnologies.com|arunkhemka12365@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:46|64.47 KB|Sent|Message for arunkhemka12365@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4535|eCAS_MutualFunds@manipaltechnologies.com|arunkherudkar2000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:47|64.33 KB|Sent|Message for arunkherudkar2000@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4536|eCAS_MutualFunds@manipaltechnologies.com|arunkhilare1966@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:48|48.6 KB|Sent|Message for arunkhilare1966@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4537|eCAS_MutualFunds@manipaltechnologies.com|arunkhodaskar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:49|54.42 KB|Sent|Message for arunkhodaskar@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4538|eCAS_MutualFunds@manipaltechnologies.com|arunkhosla77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:50|54.49 KB|Sent|Message for arunkhosla77@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4539|eCAS_MutualFunds@manipaltechnologies.com|arunkhot1975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:52|57.71 KB|Sent|Message for arunkhot1975@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4540|eCAS_MutualFunds@manipaltechnologies.com|arunkhowala95@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:53|81.6 KB|Sent|Message for arunkhowala95@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4541|eCAS_MutualFunds@manipaltechnologies.com|arunkhulbe@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:54|63.78 KB|Sent|Message for arunkhulbe@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4542|eCAS_MutualFunds@manipaltechnologies.com|arunkhullar76@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:55|70.97 KB|Sent|Message for arunkhullar76@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4543|eCAS_MutualFunds@manipaltechnologies.com|arunkhuntia27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:56|48.69 KB|Sent|Message for arunkhuntia27@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4544|eCAS_MutualFunds@manipaltechnologies.com|arunkhurana968@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:58|55.67 KB|Sent|Message for arunkhurana968@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4545|eCAS_MutualFunds@manipaltechnologies.com|arunkhushi12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:27:59|51.72 KB|Sent|Message for arunkhushi12@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4546|eCAS_MutualFunds@manipaltechnologies.com|arunkhutale65@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:00|48.79 KB|Sent|Message for arunkhutale65@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4547|eCAS_MutualFunds@manipaltechnologies.com|arunkid14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:01|56.6 KB|Sent|Message for arunkid14@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4548|eCAS_MutualFunds@manipaltechnologies.com|arunkind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:02|56.98 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta5.am0.yahoodns.net) +4548|eCAS_MutualFunds@manipaltechnologies.com|arunkind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:02|56.98 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4548|eCAS_MutualFunds@manipaltechnologies.com|arunkind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:02|56.98 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4548|eCAS_MutualFunds@manipaltechnologies.com|arunkind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:02|56.98 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4548|eCAS_MutualFunds@manipaltechnologies.com|arunkind@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:02|56.98 KB|Sent|Message for arunkind@yahoo.com accepted by 67.195.204.72:25 (mta6.am0.yahoodns.net) +4549|eCAS_MutualFunds@manipaltechnologies.com|arunking7327@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:03|49.84 KB|Sent|Message for arunking7327@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4550|eCAS_MutualFunds@manipaltechnologies.com|arunkini0705@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:05|54.1 KB|Sent|Message for arunkini0705@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.27:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4551|eCAS_MutualFunds@manipaltechnologies.com|arunkinspr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:06|57.28 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkinspr@gmail.com to suppression list because delivery has failed 18 times. +4552|eCAS_MutualFunds@manipaltechnologies.com|arunkir179@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:07|79.27 KB|Sent|Message for arunkir179@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4553|eCAS_MutualFunds@manipaltechnologies.com|arunkishorb@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:08|73.91 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta5.am0.yahoodns.net) +4553|eCAS_MutualFunds@manipaltechnologies.com|arunkishorb@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:08|73.91 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4553|eCAS_MutualFunds@manipaltechnologies.com|arunkishorb@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:08|73.91 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4553|eCAS_MutualFunds@manipaltechnologies.com|arunkishorb@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:08|73.91 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4553|eCAS_MutualFunds@manipaltechnologies.com|arunkishorb@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:08|73.91 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4553|eCAS_MutualFunds@manipaltechnologies.com|arunkishorb@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:08|73.91 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4553|eCAS_MutualFunds@manipaltechnologies.com|arunkishorb@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:08|73.91 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta5.am0.yahoodns.net) +4553|eCAS_MutualFunds@manipaltechnologies.com|arunkishorb@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:08|73.91 KB|Sent|Message for arunkishorb@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +4554|eCAS_MutualFunds@manipaltechnologies.com|arunkishorerr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:09|65.08 KB|Sent|Message for arunkishorerr@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4555|eCAS_MutualFunds@manipaltechnologies.com|arunkishorethakur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:10|60.5 KB|Sent|Message for arunkishorethakur@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4556|eCAS_MutualFunds@manipaltechnologies.com|arunkishori.jha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:12|56.77 KB|Sent|Message for arunkishori.jha@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4557|eCAS_MutualFunds@manipaltechnologies.com|arunkishorprasadgupta@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:13|55.67 KB|Sent|Message for arunkishorprasadgupta@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4558|eCAS_MutualFunds@manipaltechnologies.com|arunkjha1968@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:14|68.65 KB|Sent|Message for arunkjha1968@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4559|eCAS_MutualFunds@manipaltechnologies.com|arunkjose@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:15|54.75 KB|Sent|Message for arunkjose@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4560|eCAS_MutualFunds@manipaltechnologies.com|arunkjoshi.akj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:16|50.5 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkjoshi.akj@gmail.com to suppression list because delivery has failed 18 times. +4561|eCAS_MutualFunds@manipaltechnologies.com|arunkk.72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:17|75.73 KB|Sent|Message for arunkk.72@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4562|eCAS_MutualFunds@manipaltechnologies.com|arunkk1234567@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:19|53.68 KB|Sent|Message for arunkk1234567@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4563|eCAS_MutualFunds@manipaltechnologies.com|arunkk3436@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:20|59.32 KB|Sent|Message for arunkk3436@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4564|eCAS_MutualFunds@manipaltechnologies.com|arunkk66562@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:21|50.63 KB|Sent|Message for arunkk66562@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4565|eCAS_MutualFunds@manipaltechnologies.com|arunkkarup@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:22|59.42 KB|Sent|Message for arunkkarup@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4566|eCAS_MutualFunds@manipaltechnologies.com|arunkkd817@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:23|49.76 KB|Sent|Message for arunkkd817@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4567|eCAS_MutualFunds@manipaltechnologies.com|arunkkmepp1990@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:25|59.82 KB|Sent|Message for arunkkmepp1990@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4568|eCAS_MutualFunds@manipaltechnologies.com|arunkknadar.akk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:26|68.52 KB|Sent|Message for arunkknadar.akk@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4569|eCAS_MutualFunds@manipaltechnologies.com|arunklm135@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:27|52.97 KB|Sent|Message for arunklm135@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4570|eCAS_MutualFunds@manipaltechnologies.com|arunklpra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:28|62.89 KB|Sent|Message for arunklpra@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4571|eCAS_MutualFunds@manipaltechnologies.com|arunkm.yk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:29|81.83 KB|Sent|Message for arunkm.yk@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4572|eCAS_MutualFunds@manipaltechnologies.com|arunkm1761@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:30|48.77 KB|Sent|Message for arunkm1761@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4573|eCAS_MutualFunds@manipaltechnologies.com|arunkm_2005@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:32|87.0 KB|Sent|Message for arunkm_2005@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4574|eCAS_MutualFunds@manipaltechnologies.com|arunkm_2005@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:33|82.49 KB|Sent|Message for arunkm_2005@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4575|eCAS_MutualFunds@manipaltechnologies.com|arunkm_id@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:34|67.99 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4575|eCAS_MutualFunds@manipaltechnologies.com|arunkm_id@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:34|67.99 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4575|eCAS_MutualFunds@manipaltechnologies.com|arunkm_id@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:34|67.99 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4575|eCAS_MutualFunds@manipaltechnologies.com|arunkm_id@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:34|67.99 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4575|eCAS_MutualFunds@manipaltechnologies.com|arunkm_id@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:34|67.99 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4575|eCAS_MutualFunds@manipaltechnologies.com|arunkm_id@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:34|67.99 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4575|eCAS_MutualFunds@manipaltechnologies.com|arunkm_id@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:34|67.99 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta5.am0.yahoodns.net) +4575|eCAS_MutualFunds@manipaltechnologies.com|arunkm_id@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:34|67.99 KB|Sent|Message for arunkm_id@yahoo.com accepted by 98.136.96.74:25 (mta6.am0.yahoodns.net) +4576|eCAS_MutualFunds@manipaltechnologies.com|arunkmaheshwari86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:35|79.93 KB|Sent|Message for arunkmaheshwari86@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4577|eCAS_MutualFunds@manipaltechnologies.com|arunkmanand@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:36|58.18 KB|Sent|Message for arunkmanand@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4578|eCAS_MutualFunds@manipaltechnologies.com|arunkmanav@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:38|55.1 KB|Sent|Message for arunkmanav@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4579|eCAS_MutualFunds@manipaltechnologies.com|arunkmanheri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:39|65.9 KB|Sent|Message for arunkmanheri@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4580|eCAS_MutualFunds@manipaltechnologies.com|arunkmarmishra59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:40|62.25 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta7.am0.yahoodns.net) +4580|eCAS_MutualFunds@manipaltechnologies.com|arunkmarmishra59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:40|62.25 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4580|eCAS_MutualFunds@manipaltechnologies.com|arunkmarmishra59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:40|62.25 KB|HardFail|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4580|eCAS_MutualFunds@manipaltechnologies.com|arunkmarmishra59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:40|62.25 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4580|eCAS_MutualFunds@manipaltechnologies.com|arunkmarmishra59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:40|62.25 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4580|eCAS_MutualFunds@manipaltechnologies.com|arunkmarmishra59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:40|62.25 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4580|eCAS_MutualFunds@manipaltechnologies.com|arunkmarmishra59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:40|62.25 KB|HardFail|An error occurred while sending the message to 98.136.96.77:25 (mta5.am0.yahoodns.net) +4580|eCAS_MutualFunds@manipaltechnologies.com|arunkmarmishra59@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:40|62.25 KB|HardFail|Permanent SMTP delivery error when sending to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4581|eCAS_MutualFunds@manipaltechnologies.com|arunkmarvarma656@gmil.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:41|51.76 KB|Sent|Message for arunkmarvarma656@gmil.com accepted by 65.109.161.211:25 (mail.yaxmail.net) +4582|eCAS_MutualFunds@manipaltechnologies.com|arunkmcd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:42|60.76 KB|Sent|Message for arunkmcd@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4583|eCAS_MutualFunds@manipaltechnologies.com|arunkmdehradun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:43|49.66 KB|Sent|Message for arunkmdehradun@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4584|eCAS_MutualFunds@manipaltechnologies.com|arunkmehta1983@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:45|59.97 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4585|eCAS_MutualFunds@manipaltechnologies.com|arunkmgm8@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:46|68.38 KB|Sent|Message for arunkmgm8@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4586|eCAS_MutualFunds@manipaltechnologies.com|arunkmishra084@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:47|65.11 KB|Sent|Message for arunkmishra084@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4587|eCAS_MutualFunds@manipaltechnologies.com|arunkmohapatra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:48|71.39 KB|Sent|Message for arunkmohapatra@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4588|eCAS_MutualFunds@manipaltechnologies.com|arunkmondal85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:49|69.72 KB|Sent|Message for arunkmondal85@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4589|eCAS_MutualFunds@manipaltechnologies.com|arunkmr.b80@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:50|48.36 KB|Sent|Message for arunkmr.b80@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4590|eCAS_MutualFunds@manipaltechnologies.com|arunkmr0386@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:52|70.08 KB|Sent|Message for arunkmr0386@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4591|eCAS_MutualFunds@manipaltechnologies.com|arunkmr161@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:53|54.23 KB|Sent|Message for arunkmr161@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4592|eCAS_MutualFunds@manipaltechnologies.com|arunkmr640@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:54|56.03 KB|Sent|Message for arunkmr640@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4593|eCAS_MutualFunds@manipaltechnologies.com|arunkmr640@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:55|62.52 KB|Sent|Message for arunkmr640@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4594|eCAS_MutualFunds@manipaltechnologies.com|arunkmukherjee9@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:56|54.3 KB|Sent|Message for arunkmukherjee9@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4595|eCAS_MutualFunds@manipaltechnologies.com|arunknaik@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:57|52.24 KB|Sent|Message for arunknaik@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4596|eCAS_MutualFunds@manipaltechnologies.com|arunknitw@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:28:59|58.55 KB|Sent|Message for arunknitw@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4597|eCAS_MutualFunds@manipaltechnologies.com|arunknj518@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:00|61.88 KB|Sent|Message for arunknj518@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4598|eCAS_MutualFunds@manipaltechnologies.com|arunknnd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:01|73.68 KB|Sent|Message for arunknnd@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4599|eCAS_MutualFunds@manipaltechnologies.com|arunkobota@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:02|60.91 KB|Sent|Message for arunkobota@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.27:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.26:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4600|eCAS_MutualFunds@manipaltechnologies.com|arunkodre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:03|57.76 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkodre@gmail.com to suppression list because delivery has failed 18 times. +4601|eCAS_MutualFunds@manipaltechnologies.com|arunkohli1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:05|94.15 KB|Sent|Message for arunkohli1962@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4602|eCAS_MutualFunds@manipaltechnologies.com|arunkohli52@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:06|61.68 KB|Sent|Message for arunkohli52@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4603|eCAS_MutualFunds@manipaltechnologies.com|arunkokate123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:07|67.27 KB|Sent|Message for arunkokate123@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4604|eCAS_MutualFunds@manipaltechnologies.com|arunkokate70138@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:08|57.16 KB|Sent|Message for arunkokate70138@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4605|eCAS_MutualFunds@manipaltechnologies.com|arunkolaskar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:09|73.04 KB|Sent|Message for arunkolaskar@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4606|eCAS_MutualFunds@manipaltechnologies.com|arunkolhatkar@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:11|65.68 KB|Sent|Temporary SMTP delivery error when sending to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +4606|eCAS_MutualFunds@manipaltechnologies.com|arunkolhatkar@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:11|65.68 KB|Sent|Temporary SMTP delivery error when sending to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +4606|eCAS_MutualFunds@manipaltechnologies.com|arunkolhatkar@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:11|65.68 KB|Sent|Temporary SMTP delivery error when sending to 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +4606|eCAS_MutualFunds@manipaltechnologies.com|arunkolhatkar@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:11|65.68 KB|Sent|Temporary SMTP delivery error when sending to 188.125.72.73:25 (mx-eu.mail.am0.yahoodns.net) +4606|eCAS_MutualFunds@manipaltechnologies.com|arunkolhatkar@yahoo.co.uk|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:11|65.68 KB|Sent|Message for arunkolhatkar@yahoo.co.uk accepted by 188.125.72.74:25 (mx-eu.mail.am0.yahoodns.net) +4607|eCAS_MutualFunds@manipaltechnologies.com|arunkoli1414@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:12|50.86 KB|Sent|Message for arunkoli1414@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4608|eCAS_MutualFunds@manipaltechnologies.com|arunkoli190@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:13|57.68 KB|Sent|Message for arunkoli190@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4609|eCAS_MutualFunds@manipaltechnologies.com|arunkollaikkal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:14|89.83 KB|Sent|Message for arunkollaikkal@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4610|eCAS_MutualFunds@manipaltechnologies.com|arunkolte63@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:15|66.47 KB|Sent|Message for arunkolte63@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4611|eCAS_MutualFunds@manipaltechnologies.com|arunkomre@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:16|73.38 KB|Sent|Message for arunkomre@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4612|eCAS_MutualFunds@manipaltechnologies.com|arunkonar45@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:18|73.54 KB|Sent|Message for arunkonar45@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4613|eCAS_MutualFunds@manipaltechnologies.com|arunkonda47@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:19|61.48 KB|Sent|Message for arunkonda47@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4614|eCAS_MutualFunds@manipaltechnologies.com|arunkondilkar6540@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:20|61.11 KB|Sent|Message for arunkondilkar6540@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4615|eCAS_MutualFunds@manipaltechnologies.com|arunkoner76@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:21|74.63 KB|Sent|Message for arunkoner76@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4616|eCAS_MutualFunds@manipaltechnologies.com|arunkongari.rahil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:22|50.63 KB|Sent|Message for arunkongari.rahil@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4617|eCAS_MutualFunds@manipaltechnologies.com|arunkonnur123@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:24|52.05 KB|Sent|Message for arunkonnur123@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4618|eCAS_MutualFunds@manipaltechnologies.com|arunkonwar4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:25|61.97 KB|Sent|Message for arunkonwar4@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4619|eCAS_MutualFunds@manipaltechnologies.com|arunkonwar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:26|68.77 KB|Sent|Message for arunkonwar@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4620|eCAS_MutualFunds@manipaltechnologies.com|arunkoodalil@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:27|66.86 KB|Sent|Message for arunkoodalil@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4621|eCAS_MutualFunds@manipaltechnologies.com|arunkool28@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:28|60.14 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4621|eCAS_MutualFunds@manipaltechnologies.com|arunkool28@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:28|60.14 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4621|eCAS_MutualFunds@manipaltechnologies.com|arunkool28@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:28|60.14 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4621|eCAS_MutualFunds@manipaltechnologies.com|arunkool28@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:28|60.14 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +4621|eCAS_MutualFunds@manipaltechnologies.com|arunkool28@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:28|60.14 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4621|eCAS_MutualFunds@manipaltechnologies.com|arunkool28@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:28|60.14 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +4621|eCAS_MutualFunds@manipaltechnologies.com|arunkool28@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:28|60.14 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4621|eCAS_MutualFunds@manipaltechnologies.com|arunkool28@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:28|60.14 KB|Sent|Message for arunkool28@yahoo.com accepted by 67.195.204.74:25 (mta5.am0.yahoodns.net) +4622|eCAS_MutualFunds@manipaltechnologies.com|arunkoppad85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:30|59.79 KB|Sent|Message for arunkoppad85@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4623|eCAS_MutualFunds@manipaltechnologies.com|arunkore16@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:31|55.81 KB|Sent|Message for arunkore16@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4624|eCAS_MutualFunds@manipaltechnologies.com|arunkori17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:32|48.49 KB|Sent|Message for arunkori17@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4625|eCAS_MutualFunds@manipaltechnologies.com|arunkori46546@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:33|50.28 KB|Sent|Message for arunkori46546@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4626|eCAS_MutualFunds@manipaltechnologies.com|arunkoridriver@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:34|70.41 KB|Sent|Message for arunkoridriver@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4627|eCAS_MutualFunds@manipaltechnologies.com|arunkoroth2@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:35|58.18 KB|Sent|Message for arunkoroth2@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4628|eCAS_MutualFunds@manipaltechnologies.com|arunkoshti1980@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:37|72.45 KB|Sent|Message for arunkoshti1980@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4629|eCAS_MutualFunds@manipaltechnologies.com|arunkoshti1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:38|67.23 KB|Sent|Message for arunkoshti1@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4630|eCAS_MutualFunds@manipaltechnologies.com|arunkoshythomas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:39|69.24 KB|Sent|Message for arunkoshythomas@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4631|eCAS_MutualFunds@manipaltechnologies.com|arunkotagiri@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:40|59.86 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +4631|eCAS_MutualFunds@manipaltechnologies.com|arunkotagiri@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:40|59.86 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4631|eCAS_MutualFunds@manipaltechnologies.com|arunkotagiri@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:40|59.86 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4631|eCAS_MutualFunds@manipaltechnologies.com|arunkotagiri@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:40|59.86 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +4631|eCAS_MutualFunds@manipaltechnologies.com|arunkotagiri@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:40|59.86 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4631|eCAS_MutualFunds@manipaltechnologies.com|arunkotagiri@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:40|59.86 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +4631|eCAS_MutualFunds@manipaltechnologies.com|arunkotagiri@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:40|59.86 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4631|eCAS_MutualFunds@manipaltechnologies.com|arunkotagiri@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:40|59.86 KB|Sent|Message for arunkotagiri@yahoo.com accepted by 67.195.204.74:25 (mta5.am0.yahoodns.net) +4632|eCAS_MutualFunds@manipaltechnologies.com|arunkothari19@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:41|96.58 KB|Sent|Message for arunkothari19@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4633|eCAS_MutualFunds@manipaltechnologies.com|arunkoti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:43|49.12 KB|Sent|Message for arunkoti@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4634|eCAS_MutualFunds@manipaltechnologies.com|arunkotian24@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:44|66.51 KB|Sent|Message for arunkotian24@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4635|eCAS_MutualFunds@manipaltechnologies.com|arunkotian24@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:45|53.54 KB|Sent|Message for arunkotian24@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4636|eCAS_MutualFunds@manipaltechnologies.com|arunkotkar4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:46|56.0 KB|Sent|Message for arunkotkar4@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4637|eCAS_MutualFunds@manipaltechnologies.com|arunkotnis@sail-bhilaisteel.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:47|50.23 KB|Sent|Message for arunkotnis@sail-bhilaisteel.com accepted by 210.212.151.26:25 (mail1.sail-bhilaisteel.com) +4638|eCAS_MutualFunds@manipaltechnologies.com|arunkots@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:48|59.72 KB|Sent|Message for arunkots@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4639|eCAS_MutualFunds@manipaltechnologies.com|arunkoushik.93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:50|61.26 KB|Sent|Message for arunkoushik.93@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4640|eCAS_MutualFunds@manipaltechnologies.com|arunkowshi2004@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:51|50.07 KB|Sent|Message for arunkowshi2004@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4641|eCAS_MutualFunds@manipaltechnologies.com|arunkpal70@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:52|57.49 KB|Sent|Message for arunkpal70@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4642|eCAS_MutualFunds@manipaltechnologies.com|arunkpandey1978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:53|54.68 KB|Sent|Message for arunkpandey1978@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4643|eCAS_MutualFunds@manipaltechnologies.com|arunkpandey21@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:54|64.27 KB|Sent|Message for arunkpandey21@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4644|eCAS_MutualFunds@manipaltechnologies.com|arunkpandey41@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:56|57.19 KB|Sent|Message for arunkpandey41@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4645|eCAS_MutualFunds@manipaltechnologies.com|arunkpandit61@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:57|49.1 KB|Sent|Message for arunkpandit61@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4646|eCAS_MutualFunds@manipaltechnologies.com|arunkpaparaju@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:58|72.74 KB|Sent|Message for arunkpaparaju@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4647|eCAS_MutualFunds@manipaltechnologies.com|arunkparakh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:29:59|77.01 KB|Sent|Message for arunkparakh@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4648|eCAS_MutualFunds@manipaltechnologies.com|arunkpatel32@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:00|54.51 KB|Sent|Message for arunkpatel32@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4649|eCAS_MutualFunds@manipaltechnologies.com|arunkpathak.1959@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:01|57.2 KB|Sent|Message for arunkpathak.1959@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4650|eCAS_MutualFunds@manipaltechnologies.com|arunkpgp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:03|52.15 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4651|eCAS_MutualFunds@manipaltechnologies.com|arunkprabhat51@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:04|48.5 KB|Sent|Message for arunkprabhat51@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4652|eCAS_MutualFunds@manipaltechnologies.com|arunkps1951@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:05|68.17 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4653|eCAS_MutualFunds@manipaltechnologies.com|arunkpt@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:06|59.44 KB|Sent|Message for arunkpt@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4654|eCAS_MutualFunds@manipaltechnologies.com|arunkr.131978@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:07|48.1 KB|Sent|Message for arunkr.131978@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4655|eCAS_MutualFunds@manipaltechnologies.com|arunkr.com@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:09|51.37 KB|Sent|Message for arunkr.com@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4656|eCAS_MutualFunds@manipaltechnologies.com|arunkr.com@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:10|58.85 KB|Sent|Message for arunkr.com@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4657|eCAS_MutualFunds@manipaltechnologies.com|arunkr.ncor@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:11|65.01 KB|Sent|Message for arunkr.ncor@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4658|eCAS_MutualFunds@manipaltechnologies.com|arunkr.neogi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:12|62.31 KB|Sent|Message for arunkr.neogi@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4659|eCAS_MutualFunds@manipaltechnologies.com|arunkr.qtr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:13|76.91 KB|Sent|Message for arunkr.qtr@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4660|eCAS_MutualFunds@manipaltechnologies.com|arunkr.sharma1763@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:14|68.66 KB|Sent|Message for arunkr.sharma1763@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4661|eCAS_MutualFunds@manipaltechnologies.com|arunkr.singh130@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:16|75.68 KB|Sent|Message for arunkr.singh130@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4662|eCAS_MutualFunds@manipaltechnologies.com|arunkr.singh1501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:17|64.01 KB|Sent|Message for arunkr.singh1501@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4663|eCAS_MutualFunds@manipaltechnologies.com|arunkr.singh1501@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:18|60.62 KB|Sent|Message for arunkr.singh1501@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4664|eCAS_MutualFunds@manipaltechnologies.com|arunkr.singh1963@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:19|83.94 KB|Sent|Message for arunkr.singh1963@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4665|eCAS_MutualFunds@manipaltechnologies.com|arunkr.singh77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:20|69.92 KB|Sent|Message for arunkr.singh77@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4666|eCAS_MutualFunds@manipaltechnologies.com|arunkr.swargari@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:22|66.99 KB|Sent|Message for arunkr.swargari@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4667|eCAS_MutualFunds@manipaltechnologies.com|arunkr.varanasi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:23|73.32 KB|Sent|Message for arunkr.varanasi@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4668|eCAS_MutualFunds@manipaltechnologies.com|arunkr100000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:24|90.25 KB|Sent|Message for arunkr100000@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4669|eCAS_MutualFunds@manipaltechnologies.com|arunkr111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:25|62.32 KB|Sent|Message for arunkr111@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4670|eCAS_MutualFunds@manipaltechnologies.com|arunkr1357@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:26|49.54 KB|Sent|Message for arunkr1357@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4671|eCAS_MutualFunds@manipaltechnologies.com|arunkr1361964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:28|72.92 KB|Sent|Message for arunkr1361964@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4672|eCAS_MutualFunds@manipaltechnologies.com|arunkr1361964@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:29|60.45 KB|Sent|Message for arunkr1361964@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4673|eCAS_MutualFunds@manipaltechnologies.com|arunkr15276@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:30|65.71 KB|Sent|Message for arunkr15276@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4674|eCAS_MutualFunds@manipaltechnologies.com|arunkr1792@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:31|54.75 KB|Sent|Message for arunkr1792@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4675|eCAS_MutualFunds@manipaltechnologies.com|arunkr2408@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:32|54.64 KB|Sent|Message for arunkr2408@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4676|eCAS_MutualFunds@manipaltechnologies.com|arunkr24684@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:33|49.38 KB|Sent|Message for arunkr24684@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4677|eCAS_MutualFunds@manipaltechnologies.com|arunkr2@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:35|61.4 KB|Sent|Message for arunkr2@hotmail.com accepted by 52.101.68.28:25 (hotmail-com.olc.protection.outlook.com) +4678|eCAS_MutualFunds@manipaltechnologies.com|arunkr2@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:36|53.93 KB|Sent|Message for arunkr2@hotmail.com accepted by 52.101.68.28:25 (hotmail-com.olc.protection.outlook.com) +4679|eCAS_MutualFunds@manipaltechnologies.com|arunkr3451@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:37|53.89 KB|Sent|Message for arunkr3451@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4680|eCAS_MutualFunds@manipaltechnologies.com|arunkr3639@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:38|71.31 KB|Sent|Message for arunkr3639@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4681|eCAS_MutualFunds@manipaltechnologies.com|arunkr5901@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:39|65.8 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkr5901@gmail.com to suppression list because delivery has failed 18 times. +4682|eCAS_MutualFunds@manipaltechnologies.com|arunkr621@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:41|71.96 KB|Sent|Message for arunkr621@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4683|eCAS_MutualFunds@manipaltechnologies.com|arunkr7mk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:42|69.9 KB|Sent|Message for arunkr7mk@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4684|eCAS_MutualFunds@manipaltechnologies.com|arunkr8242@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:43|68.36 KB|Sent|Message for arunkr8242@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4685|eCAS_MutualFunds@manipaltechnologies.com|arunkr968@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:44|52.77 KB|Sent|Message for arunkr968@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4686|eCAS_MutualFunds@manipaltechnologies.com|arunkr996@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:45|51.35 KB|Sent|Message for arunkr996@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4687|eCAS_MutualFunds@manipaltechnologies.com|arunkr@tatasteel.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:46|49.15 KB|Sent|Message for arunkr@tatasteel.com accepted by 52.101.144.3:25 (tatasteel-com.mail.protection.outlook.com) +4688|eCAS_MutualFunds@manipaltechnologies.com|arunkr_123@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:48|60.13 KB|Sent|Message for arunkr_123@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4689|eCAS_MutualFunds@manipaltechnologies.com|arunkr_paul@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:49|52.55 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4689|eCAS_MutualFunds@manipaltechnologies.com|arunkr_paul@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:49|52.55 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4689|eCAS_MutualFunds@manipaltechnologies.com|arunkr_paul@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:49|52.55 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4689|eCAS_MutualFunds@manipaltechnologies.com|arunkr_paul@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:49|52.55 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta5.am0.yahoodns.net) +4689|eCAS_MutualFunds@manipaltechnologies.com|arunkr_paul@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:49|52.55 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta5.am0.yahoodns.net) +4689|eCAS_MutualFunds@manipaltechnologies.com|arunkr_paul@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:49|52.55 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta7.am0.yahoodns.net) +4689|eCAS_MutualFunds@manipaltechnologies.com|arunkr_paul@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:49|52.55 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +4689|eCAS_MutualFunds@manipaltechnologies.com|arunkr_paul@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:49|52.55 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.228.106:25 (mta5.am0.yahoodns.net) +4690|eCAS_MutualFunds@manipaltechnologies.com|arunkradhakrishnan23@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:50|60.05 KB|Sent|Message for arunkradhakrishnan23@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4691|eCAS_MutualFunds@manipaltechnologies.com|arunkrai86@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:51|55.98 KB|Sent|Message for arunkrai86@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4692|eCAS_MutualFunds@manipaltechnologies.com|arunkrai@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:52|66.74 KB|Sent|Message for arunkrai@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4693|eCAS_MutualFunds@manipaltechnologies.com|arunkrajagopal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:54|64.58 KB|Sent|Message for arunkrajagopal@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4694|eCAS_MutualFunds@manipaltechnologies.com|arunkrajbhar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:55|68.26 KB|Sent|Message for arunkrajbhar@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4695|eCAS_MutualFunds@manipaltechnologies.com|arunkrastogi8630@arun.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:56|53.3 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.27:25 (aspmx.l.google.com) +4696|eCAS_MutualFunds@manipaltechnologies.com|arunkrbasak@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:57|60.0 KB|Sent|Message for arunkrbasak@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4697|eCAS_MutualFunds@manipaltechnologies.com|arunkrbhaduri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:30:58|52.64 KB|Sent|Message for arunkrbhaduri@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4698|eCAS_MutualFunds@manipaltechnologies.com|arunkrbhaktaslg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:00|48.33 KB|Sent|Message for arunkrbhaktaslg@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4699|eCAS_MutualFunds@manipaltechnologies.com|arunkrbrlps@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:01|56.81 KB|Sent|Message for arunkrbrlps@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4700|eCAS_MutualFunds@manipaltechnologies.com|arunkrdangi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:02|59.12 KB|Sent|Message for arunkrdangi@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4701|eCAS_MutualFunds@manipaltechnologies.com|arunkrdangi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:03|55.53 KB|Sent|Message for arunkrdangi@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4702|eCAS_MutualFunds@manipaltechnologies.com|arunkrdas1969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:04|69.4 KB|Sent|Message for arunkrdas1969@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4703|eCAS_MutualFunds@manipaltechnologies.com|arunkrdas95@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:05|57.17 KB|Sent|Message for arunkrdas95@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4704|eCAS_MutualFunds@manipaltechnologies.com|arunkrdeb960@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:07|48.38 KB|Sent|Message for arunkrdeb960@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4705|eCAS_MutualFunds@manipaltechnologies.com|arunkrdubey111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:08|48.33 KB|Sent|Message for arunkrdubey111@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4706|eCAS_MutualFunds@manipaltechnologies.com|arunkrdubey1991@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:09|55.18 KB|Sent|Message for arunkrdubey1991@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4707|eCAS_MutualFunds@manipaltechnologies.com|arunkrdumri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:10|60.96 KB|Sent|Message for arunkrdumri@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4708|eCAS_MutualFunds@manipaltechnologies.com|arunkrdutta1963@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:14|79.89 KB|Sent|Message for arunkrdutta1963@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4709|eCAS_MutualFunds@manipaltechnologies.com|arunkreddychattla1012@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:16|65.25 KB|Sent|Message for arunkreddychattla1012@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4710|eCAS_MutualFunds@manipaltechnologies.com|arunkrgahlot@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:17|63.35 KB|Sent|Message for arunkrgahlot@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4711|eCAS_MutualFunds@manipaltechnologies.com|arunkrghosh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:18|52.85 KB|Sent|Message for arunkrghosh@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4712|eCAS_MutualFunds@manipaltechnologies.com|arunkrgupta1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:20|55.93 KB|Sent|Message for arunkrgupta1985@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4713|eCAS_MutualFunds@manipaltechnologies.com|arunkrgupta306@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:21|49.35 KB|Sent|Message for arunkrgupta306@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4714|eCAS_MutualFunds@manipaltechnologies.com|arunkrguptapsw@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:23|77.39 KB|Sent|Message for arunkrguptapsw@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4715|eCAS_MutualFunds@manipaltechnologies.com|arunkrhembram94@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:24|57.94 KB|Sent|Message for arunkrhembram94@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4716|eCAS_MutualFunds@manipaltechnologies.com|arunkridr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:25|55.52 KB|Sent|Message for arunkridr@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4717|eCAS_MutualFunds@manipaltechnologies.com|arunkrishna.ld@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:27|55.83 KB|Sent|Message for arunkrishna.ld@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4718|eCAS_MutualFunds@manipaltechnologies.com|arunkrishna@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:28|55.39 KB|Sent|Message for arunkrishna@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4719|eCAS_MutualFunds@manipaltechnologies.com|arunkrishnadas@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:29|55.93 KB|Sent|Message for arunkrishnadas@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4720|eCAS_MutualFunds@manipaltechnologies.com|arunkrishnakundu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:31|51.27 KB|Sent|Message for arunkrishnakundu@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4721|eCAS_MutualFunds@manipaltechnologies.com|arunkrishnan091@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:32|54.83 KB|Sent|Message for arunkrishnan091@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4722|eCAS_MutualFunds@manipaltechnologies.com|arunkrishnanhse@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:33|69.89 KB|Sent|Message for arunkrishnanhse@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4723|eCAS_MutualFunds@manipaltechnologies.com|arunkrishnasaha5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:35|58.34 KB|Sent|Message for arunkrishnasaha5@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4724|eCAS_MutualFunds@manipaltechnologies.com|arunkrishnaus@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:36|61.69 KB|Sent|Message for arunkrishnaus@gmail.com accepted by 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4725|eCAS_MutualFunds@manipaltechnologies.com|arunkriz@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:37|55.15 KB|Sent|Message for arunkriz@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4726|eCAS_MutualFunds@manipaltechnologies.com|arunkrjain64@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:39|51.66 KB|Sent|Message for arunkrjain64@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4727|eCAS_MutualFunds@manipaltechnologies.com|arunkrjana79@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:40|52.12 KB|Sent|Message for arunkrjana79@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4728|eCAS_MutualFunds@manipaltechnologies.com|arunkrjangid@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:41|49.63 KB|Sent|Message for arunkrjangid@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4729|eCAS_MutualFunds@manipaltechnologies.com|arunkrlaha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:43|58.14 KB|Sent|Message for arunkrlaha@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4730|eCAS_MutualFunds@manipaltechnologies.com|arunkrmahto7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:44|54.79 KB|Sent|Message for arunkrmahto7@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4731|eCAS_MutualFunds@manipaltechnologies.com|arunkrmishra1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:45|48.26 KB|Sent|Message for arunkrmishra1962@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4732|eCAS_MutualFunds@manipaltechnologies.com|arunkrmondal@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:47|62.65 KB|Sent|Message for arunkrmondal@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4733|eCAS_MutualFunds@manipaltechnologies.com|arunkrmondal@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:48|69.72 KB|Sent|Message for arunkrmondal@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4734|eCAS_MutualFunds@manipaltechnologies.com|arunkrmondal@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:49|61.19 KB|Sent|Message for arunkrmondal@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4735|eCAS_MutualFunds@manipaltechnologies.com|arunkrnehru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:51|63.82 KB|Sent|Message for arunkrnehru@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4736|eCAS_MutualFunds@manipaltechnologies.com|arunkrpan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:52|55.18 KB|Sent|Message for arunkrpan@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4737|eCAS_MutualFunds@manipaltechnologies.com|arunkrpan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:53|54.21 KB|Sent|Message for arunkrpan@gmail.com accepted by 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4738|eCAS_MutualFunds@manipaltechnologies.com|arunkrpandit@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:55|50.06 KB|Sent|Message for arunkrpandit@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4739|eCAS_MutualFunds@manipaltechnologies.com|arunkrpaul001@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:56|66.15 KB|Sent|Message for arunkrpaul001@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4740|eCAS_MutualFunds@manipaltechnologies.com|arunkrpd999@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:57|61.7 KB|Sent|Message for arunkrpd999@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4741|eCAS_MutualFunds@manipaltechnologies.com|arunkrpl31@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:31:58|52.29 KB|Sent|Message for arunkrpl31@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4742|eCAS_MutualFunds@manipaltechnologies.com|arunkrprasad997@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:00|72.08 KB|Sent|Message for arunkrprasad997@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4743|eCAS_MutualFunds@manipaltechnologies.com|arunkrroy.99@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:01|56.76 KB|Sent|Message for arunkrroy.99@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4744|eCAS_MutualFunds@manipaltechnologies.com|arunkrs.usha@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:02|65.3 KB|Sent|Message for arunkrs.usha@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4745|eCAS_MutualFunds@manipaltechnologies.com|arunkrsah1111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:03|82.58 KB|Sent|Message for arunkrsah1111@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4746|eCAS_MutualFunds@manipaltechnologies.com|arunkrsaxenakgp@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:04|66.69 KB|Sent|Message for arunkrsaxenakgp@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4747|eCAS_MutualFunds@manipaltechnologies.com|arunkrsethia@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:05|52.23 KB|Sent|Message for arunkrsethia@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4748|eCAS_MutualFunds@manipaltechnologies.com|arunkrsharma2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:07|65.97 KB|Sent|Message for arunkrsharma2014@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4749|eCAS_MutualFunds@manipaltechnologies.com|arunkrsharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:08|64.58 KB|Sent|Message for arunkrsharma@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4750|eCAS_MutualFunds@manipaltechnologies.com|arunkrsharmaudh@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:09|82.86 KB|Sent|Message for arunkrsharmaudh@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4751|eCAS_MutualFunds@manipaltechnologies.com|arunkrshaw1965@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:10|70.38 KB|Sent|Message for arunkrshaw1965@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4752|eCAS_MutualFunds@manipaltechnologies.com|arunkrsingh148@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:11|61.14 KB|Sent|Message for arunkrsingh148@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4753|eCAS_MutualFunds@manipaltechnologies.com|arunkrsingh196@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:13|57.8 KB|Sent|Message for arunkrsingh196@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4754|eCAS_MutualFunds@manipaltechnologies.com|arunkrsingh37@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:14|64.21 KB|Sent|Message for arunkrsingh37@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4755|eCAS_MutualFunds@manipaltechnologies.com|arunkrsingh443@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:15|61.82 KB|Sent|Message for arunkrsingh443@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4756|eCAS_MutualFunds@manipaltechnologies.com|arunkrsingh664@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:16|87.29 KB|Sent|Message for arunkrsingh664@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4757|eCAS_MutualFunds@manipaltechnologies.com|arunkrsingh9415388487@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:17|66.87 KB|Sent|Message for arunkrsingh9415388487@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4758|eCAS_MutualFunds@manipaltechnologies.com|arunkrsinghpwd0912@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:18|64.64 KB|Sent|Message for arunkrsinghpwd0912@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4759|eCAS_MutualFunds@manipaltechnologies.com|arunkrsinha88@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:20|60.86 KB|Sent|Message for arunkrsinha88@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4760|eCAS_MutualFunds@manipaltechnologies.com|arunkrsoni.16@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:21|58.09 KB|Sent|Message for arunkrsoni.16@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4761|eCAS_MutualFunds@manipaltechnologies.com|arunkrthakur1987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:22|54.68 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkrthakur1987@gmail.com to suppression list because delivery has failed 18 times. +4762|eCAS_MutualFunds@manipaltechnologies.com|arunkrverma1946@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:23|58.75 KB|Sent|Message for arunkrverma1946@gmail.com accepted by 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4763|eCAS_MutualFunds@manipaltechnologies.com|arunkrverma1946@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:24|61.3 KB|Sent|Message for arunkrverma1946@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4764|eCAS_MutualFunds@manipaltechnologies.com|arunkrverma1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:26|62.14 KB|Sent|Message for arunkrverma1985@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4765|eCAS_MutualFunds@manipaltechnologies.com|arunkryadav1979@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:27|55.18 KB|Sent|Message for arunkryadav1979@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4766|eCAS_MutualFunds@manipaltechnologies.com|arunkryadav437@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:28|60.67 KB|Sent|Message for arunkryadav437@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4767|eCAS_MutualFunds@manipaltechnologies.com|arunkryadav488@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:29|63.98 KB|Sent|Message for arunkryadav488@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4768|eCAS_MutualFunds@manipaltechnologies.com|arunkryadav622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:30|82.58 KB|Sent|Message for arunkryadav622@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4769|eCAS_MutualFunds@manipaltechnologies.com|arunks0358@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:36|58.24 KB|Sent|Message for arunks0358@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4770|eCAS_MutualFunds@manipaltechnologies.com|arunks1906@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:38|71.02 KB|Sent|Message for arunks1906@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4771|eCAS_MutualFunds@manipaltechnologies.com|arunks1965@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:39|69.2 KB|Sent|Message for arunks1965@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4772|eCAS_MutualFunds@manipaltechnologies.com|arunks23@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:40|63.67 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4772|eCAS_MutualFunds@manipaltechnologies.com|arunks23@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:40|63.67 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4772|eCAS_MutualFunds@manipaltechnologies.com|arunks23@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:40|63.67 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4772|eCAS_MutualFunds@manipaltechnologies.com|arunks23@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:40|63.67 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4772|eCAS_MutualFunds@manipaltechnologies.com|arunks23@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:40|63.67 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4772|eCAS_MutualFunds@manipaltechnologies.com|arunks23@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:40|63.67 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4772|eCAS_MutualFunds@manipaltechnologies.com|arunks23@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:40|63.67 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4772|eCAS_MutualFunds@manipaltechnologies.com|arunks23@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:40|63.67 KB|Sent|Message for arunks23@yahoo.com accepted by 67.195.204.73:25 (mta5.am0.yahoodns.net) +4773|eCAS_MutualFunds@manipaltechnologies.com|arunks64d@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:41|58.52 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4773|eCAS_MutualFunds@manipaltechnologies.com|arunks64d@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:41|58.52 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta5.am0.yahoodns.net) +4773|eCAS_MutualFunds@manipaltechnologies.com|arunks64d@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:41|58.52 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4773|eCAS_MutualFunds@manipaltechnologies.com|arunks64d@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:41|58.52 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4773|eCAS_MutualFunds@manipaltechnologies.com|arunks64d@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:41|58.52 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4773|eCAS_MutualFunds@manipaltechnologies.com|arunks64d@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:41|58.52 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4773|eCAS_MutualFunds@manipaltechnologies.com|arunks64d@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:41|58.52 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta5.am0.yahoodns.net) +4773|eCAS_MutualFunds@manipaltechnologies.com|arunks64d@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:41|58.52 KB|Sent|Message for arunks64d@ymail.com accepted by 67.195.228.111:25 (mta6.am0.yahoodns.net) +4774|eCAS_MutualFunds@manipaltechnologies.com|arunks8958@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:42|65.36 KB|Sent|Message for arunks8958@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4775|eCAS_MutualFunds@manipaltechnologies.com|arunksahoo2014@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:44|63.88 KB|Sent|Message for arunksahoo2014@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4776|eCAS_MutualFunds@manipaltechnologies.com|arunksanjay@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:45|72.17 KB|Sent|Message for arunksanjay@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4777|eCAS_MutualFunds@manipaltechnologies.com|arunksankhwar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:46|52.24 KB|Sent|Message for arunksankhwar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4778|eCAS_MutualFunds@manipaltechnologies.com|arunksarma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:47|76.42 KB|Sent|Message for arunksarma@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4779|eCAS_MutualFunds@manipaltechnologies.com|arunksathyan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:48|54.84 KB|Sent|Message for arunksathyan@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4780|eCAS_MutualFunds@manipaltechnologies.com|arunksatyala@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:49|73.85 KB|Sent|Message for arunksatyala@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4781|eCAS_MutualFunds@manipaltechnologies.com|arunksharda@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:51|70.47 KB|Sent|Message for arunksharda@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4782|eCAS_MutualFunds@manipaltechnologies.com|arunksharma.cci@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:52|64.49 KB|Sent|Message for arunksharma.cci@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4783|eCAS_MutualFunds@manipaltechnologies.com|arunksharma025@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:53|63.25 KB|Sent|Message for arunksharma025@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4784|eCAS_MutualFunds@manipaltechnologies.com|arunksharma27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:54|64.26 KB|Sent|Message for arunksharma27@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4785|eCAS_MutualFunds@manipaltechnologies.com|arunksharma@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:55|62.55 KB|Sent|Message for arunksharma@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4786|eCAS_MutualFunds@manipaltechnologies.com|arunkshatriya11@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:57|64.8 KB|Sent|Message for arunkshatriya11@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4787|eCAS_MutualFunds@manipaltechnologies.com|arunksingh.agri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:58|56.33 KB|Sent|Message for arunksingh.agri@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4788|eCAS_MutualFunds@manipaltechnologies.com|arunksingh010158@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:32:59|63.19 KB|Sent|Message for arunksingh010158@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4789|eCAS_MutualFunds@manipaltechnologies.com|arunksingh1947@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:00|55.37 KB|Sent|Message for arunksingh1947@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4790|eCAS_MutualFunds@manipaltechnologies.com|arunksingh1947@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:01|54.14 KB|Sent|Message for arunksingh1947@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4791|eCAS_MutualFunds@manipaltechnologies.com|arunksingh1953@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:03|57.5 KB|Sent|Message for arunksingh1953@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4792|eCAS_MutualFunds@manipaltechnologies.com|arunksingh559@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:04|57.52 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4793|eCAS_MutualFunds@manipaltechnologies.com|arunksingh971974@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:05|56.29 KB|Sent|Message for arunksingh971974@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4794|eCAS_MutualFunds@manipaltechnologies.com|arunksinghca@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:06|51.1 KB|Sent|Message for arunksinghca@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4795|eCAS_MutualFunds@manipaltechnologies.com|arunksinha48@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:07|72.54 KB|Sent|Message for arunksinha48@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4796|eCAS_MutualFunds@manipaltechnologies.com|arunksng@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:09|86.4 KB|Sent|Message for arunksng@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4797|eCAS_MutualFunds@manipaltechnologies.com|arunksnh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:10|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4797|eCAS_MutualFunds@manipaltechnologies.com|arunksnh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:10|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4797|eCAS_MutualFunds@manipaltechnologies.com|arunksnh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:10|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4797|eCAS_MutualFunds@manipaltechnologies.com|arunksnh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:10|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4797|eCAS_MutualFunds@manipaltechnologies.com|arunksnh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:10|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4797|eCAS_MutualFunds@manipaltechnologies.com|arunksnh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:10|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4797|eCAS_MutualFunds@manipaltechnologies.com|arunksnh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:10|50.65 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +4797|eCAS_MutualFunds@manipaltechnologies.com|arunksnh@yahoo.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:10|50.65 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +4798|eCAS_MutualFunds@manipaltechnologies.com|arunksp135@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:11|50.19 KB|Sent|Message for arunksp135@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4799|eCAS_MutualFunds@manipaltechnologies.com|arunksundaram@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:12|53.12 KB|Sent|Message for arunksundaram@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4800|eCAS_MutualFunds@manipaltechnologies.com|arunkt0308@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:13|64.84 KB|Sent|Message for arunkt0308@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4801|eCAS_MutualFunds@manipaltechnologies.com|arunkt06@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:14|54.61 KB|Sent|Message for arunkt06@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4802|eCAS_MutualFunds@manipaltechnologies.com|arunkt20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:16|52.33 KB|Sent|Message for arunkt20@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4803|eCAS_MutualFunds@manipaltechnologies.com|arunktc@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:17|65.71 KB|Sent|Message for arunktc@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4804|eCAS_MutualFunds@manipaltechnologies.com|arunkthakur67@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:18|89.94 KB|Sent|Message for arunkthakur67@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4805|eCAS_MutualFunds@manipaltechnologies.com|arunktnl107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:19|57.0 KB|Sent|Message for arunktnl107@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4806|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:20|62.78 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunktripathi@lntech.com to suppression list because delivery has failed 18 times. +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Temporary SMTP delivery error when sending to ::1:25 (localhost) +4807|eCAS_MutualFunds@manipaltechnologies.com|arunktripathi@lntech.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:22|66.97 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunktripathi@lntech.com to suppression list because delivery has failed 18 times. +4808|eCAS_MutualFunds@manipaltechnologies.com|arunku.singh554@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:23|55.5 KB|Sent|Message for arunku.singh554@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4809|eCAS_MutualFunds@manipaltechnologies.com|arunkuchlyan7@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:24|80.02 KB|Sent|Message for arunkuchlyan7@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4810|eCAS_MutualFunds@manipaltechnologies.com|arunkudas789@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:25|70.13 KB|Sent|Message for arunkudas789@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4811|eCAS_MutualFunds@manipaltechnologies.com|arunkudiyal14@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:26|61.48 KB|Sent|Message for arunkudiyal14@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4812|eCAS_MutualFunds@manipaltechnologies.com|arunkukreja15@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:27|51.31 KB|Sent|Message for arunkukreja15@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4813|eCAS_MutualFunds@manipaltechnologies.com|arunkuksal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:29|69.77 KB|Sent|Message for arunkuksal@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4814|eCAS_MutualFunds@manipaltechnologies.com|arunkulenavar007@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:30|65.73 KB|Sent|Message for arunkulenavar007@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4815|eCAS_MutualFunds@manipaltechnologies.com|arunkulkarni103@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:31|56.96 KB|Sent|Message for arunkulkarni103@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4816|eCAS_MutualFunds@manipaltechnologies.com|arunkulkarni15@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:32|70.65 KB|Sent|Message for arunkulkarni15@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4817|eCAS_MutualFunds@manipaltechnologies.com|arunkulkarni214@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:33|70.54 KB|Sent|Message for arunkulkarni214@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4818|eCAS_MutualFunds@manipaltechnologies.com|arunkulkarni882@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:35|79.2 KB|Sent|Message for arunkulkarni882@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4819|eCAS_MutualFunds@manipaltechnologies.com|arunkulumani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:36|76.57 KB|Sent|Message for arunkulumani@gmail.com accepted by 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4820|eCAS_MutualFunds@manipaltechnologies.com|arunkum1231@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:37|61.13 KB|Sent|Message for arunkum1231@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4821|eCAS_MutualFunds@manipaltechnologies.com|arunkum17@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:38|67.69 KB|Sent|Message for arunkum17@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4822|eCAS_MutualFunds@manipaltechnologies.com|arunkum4558@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:39|57.74 KB|Sent|Message for arunkum4558@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4823|eCAS_MutualFunds@manipaltechnologies.com|arunkuma89781@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:41|50.64 KB|Sent|Message for arunkuma89781@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4824|eCAS_MutualFunds@manipaltechnologies.com|arunkumar-malpani@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:42|65.81 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4824|eCAS_MutualFunds@manipaltechnologies.com|arunkumar-malpani@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:42|65.81 KB|HardFail|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4824|eCAS_MutualFunds@manipaltechnologies.com|arunkumar-malpani@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:42|65.81 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4824|eCAS_MutualFunds@manipaltechnologies.com|arunkumar-malpani@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:42|65.81 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +4824|eCAS_MutualFunds@manipaltechnologies.com|arunkumar-malpani@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:42|65.81 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta6.am0.yahoodns.net) +4824|eCAS_MutualFunds@manipaltechnologies.com|arunkumar-malpani@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:42|65.81 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4824|eCAS_MutualFunds@manipaltechnologies.com|arunkumar-malpani@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:42|65.81 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4824|eCAS_MutualFunds@manipaltechnologies.com|arunkumar-malpani@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:42|65.81 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.228.111:25 (mta7.am0.yahoodns.net) +4825|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.09@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:43|65.14 KB|Sent|Message for arunkumar.09@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta6.am0.yahoodns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta6.am0.yahoodns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta7.am0.yahoodns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta6.am0.yahoodns.net) +4826|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.1971@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:44|89.92 KB|Sent|Message for arunkumar.1971@yahoo.com accepted by 67.195.228.110:25 (mta7.am0.yahoodns.net) +4827|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.2016pal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:45|79.51 KB|Sent|Message for arunkumar.2016pal@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4828|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.aak@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:46|60.22 KB|Sent|Message for arunkumar.aak@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4829|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.adn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:48|80.7 KB|Sent|Message for arunkumar.adn@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4830|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.ag93@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:49|58.46 KB|Sent|Message for arunkumar.ag93@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4831|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.ak.1153@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:50|55.4 KB|Sent|Message for arunkumar.ak.1153@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4832|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.ak46149@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:51|68.46 KB|Sent|Message for arunkumar.ak46149@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4833|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.ak@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:52|48.55 KB|Sent|Message for arunkumar.ak@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4834|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.akku05@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:54|86.58 KB|Sent|Message for arunkumar.akku05@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4835|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.alam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:55|61.44 KB|Sent|Message for arunkumar.alam@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4836|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.alam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:56|74.42 KB|Sent|Message for arunkumar.alam@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4837|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.alam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:57|92.46 KB|Sent|Message for arunkumar.alam@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4838|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.alambagh.lic@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:33:58|58.75 KB|Sent|Message for arunkumar.alambagh.lic@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4839|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.an146@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:00|56.34 KB|Sent|Message for arunkumar.an146@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4840|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.arun9110@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:01|63.8 KB|Sent|Message for arunkumar.arun9110@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4841|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.asn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:02|53.89 KB|Sent|Message for arunkumar.asn@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4842|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.b41@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:03|76.01 KB|Sent|Message for arunkumar.b41@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4843|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.baral1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:04|63.52 KB|Sent|Message for arunkumar.baral1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4844|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.basantia@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:05|66.02 KB|Sent|Message for arunkumar.basantia@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4845|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.bltr1974@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:07|52.19 KB|Sent|Message for arunkumar.bltr1974@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4846|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.bxr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:08|63.97 KB|Sent|Message for arunkumar.bxr@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4847|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.c85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:09|63.25 KB|Sent|Message for arunkumar.c85@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4848|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.c@capgemini.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:10|52.82 KB|HardFail|Permanent SMTP delivery error when sending to 23.90.111.155:25 (mx2.hc674-87.eu.iphmx.com) +4849|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.chinna@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:11|63.92 KB|Sent|Message for arunkumar.chinna@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4850|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.chinnappanaidu@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:13|48.91 KB|Sent|Message for arunkumar.chinnappanaidu@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4851|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.coimbatore@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:14|51.11 KB|Sent|Message for arunkumar.coimbatore@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4852|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.forever@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:15|83.6 KB|Sent|Message for arunkumar.forever@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4853|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.fsi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:16|52.42 KB|Sent|Message for arunkumar.fsi@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4854|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.gangotri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:17|65.59 KB|Sent|Message for arunkumar.gangotri@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4855|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.gdsgd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:18|70.74 KB|Sent|Message for arunkumar.gdsgd@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4856|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.harti@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:20|88.77 KB|Sent|Message for arunkumar.harti@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4857|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.hj@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:21|61.58 KB|Sent|Message for arunkumar.hj@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4858|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.india@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:22|54.11 KB|Sent|Message for arunkumar.india@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4859|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.issur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:23|67.0 KB|Sent|Message for arunkumar.issur@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4860|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.jhpolice@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:24|56.7 KB|Sent|Message for arunkumar.jhpolice@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4861|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.k12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:26|56.82 KB|Sent|Message for arunkumar.k12@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4862|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.k12@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:27|59.49 KB|Sent|Message for arunkumar.k12@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4863|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.k44@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:28|75.58 KB|Sent|Message for arunkumar.k44@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4864|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.karunakaran@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:29|85.11 KB|Sent|Message for arunkumar.karunakaran@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4865|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.knr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:30|51.87 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkumar.knr@gmail.com to suppression list because delivery has failed 18 times. +4866|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kokitkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:32|59.51 KB|Sent|Message for arunkumar.kokitkar@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.27:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4867|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kplm@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:33|62.89 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkumar.kplm@gmail.com to suppression list because delivery has failed 18 times. +4868|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.krishna1975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:34|66.5 KB|Sent|Message for arunkumar.krishna1975@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4869|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.ks@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:35|71.45 KB|Sent|Message for arunkumar.ks@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta5.am0.yahoodns.net) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta6.am0.yahoodns.net) +4870|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kulikkarai@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:36|54.72 KB|Sent|Message for arunkumar.kulikkarai@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +4871|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kumar1985@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:38|48.5 KB|Sent|Message for arunkumar.kumar1985@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4872|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.kumar280@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:39|74.51 KB|Sent|Message for arunkumar.kumar280@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4873|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.lakhani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:40|75.61 KB|Sent|Message for arunkumar.lakhani@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4874|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.lakhani@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:41|55.15 KB|Sent|Message for arunkumar.lakhani@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4875|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.lovely2000@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:42|71.92 KB|Sent|Message for arunkumar.lovely2000@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4876|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.mandal@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:43|56.53 KB|Sent|Message for arunkumar.mandal@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +4877|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.nair85@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:45|95.27 KB|Sent|Message for arunkumar.nair85@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta6.am0.yahoodns.net) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta5.am0.yahoodns.net) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta5.am0.yahoodns.net) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta6.am0.yahoodns.net) +4878|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.namasivayam@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:46|52.92 KB|Sent|Message for arunkumar.namasivayam@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +4879|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.napcogroup@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:47|50.82 KB|Sent|Message for arunkumar.napcogroup@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4880|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.naw74@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:48|60.63 KB|Sent|Message for arunkumar.naw74@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4881|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.nby@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:49|54.13 KB|Sent|Message for arunkumar.nby@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4882|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.p.niit@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:51|53.19 KB|Sent|Message for arunkumar.p.niit@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4883|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.p@adityabirla.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:52|54.82 KB|Sent|Message for arunkumar.p@adityabirla.com accepted by 52.101.144.3:25 (adityabirla-com.mail.protection.outlook.com) +4884|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.palai72@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:53|62.98 KB|Sent|Message for arunkumar.palai72@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4885|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.pathak3@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:54|71.19 KB|Sent|Message for arunkumar.pathak3@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4886|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.puliccal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:55|60.55 KB|Sent|Message for arunkumar.puliccal@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4887|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.r753@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:57|51.42 KB|Sent|Message for arunkumar.r753@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4888|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.rachna@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:58|55.57 KB|Sent|Message for arunkumar.rachna@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4889|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.rajendran1@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:34:59|86.9 KB|Sent|Message for arunkumar.rajendran1@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4890|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.rnjthakur@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:00|58.47 KB|Sent|Message for arunkumar.rnjthakur@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4891|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.ronija@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:01|48.43 KB|Sent|Message for arunkumar.ronija@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4892|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.roy@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:02|48.29 KB|Sent|Message for arunkumar.roy@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4893|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.rvr@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:04|77.8 KB|Sent|Message for arunkumar.rvr@hotmail.com accepted by 52.101.41.59:25 (hotmail-com.olc.protection.outlook.com) +4894|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.s.gautam@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:05|52.43 KB|Sent|Message for arunkumar.s.gautam@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4895|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.s062@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:06|66.8 KB|Sent|Message for arunkumar.s062@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4896|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.sanyam8454@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:07|50.33 KB|Sent|Message for arunkumar.sanyam8454@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4897|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.seelan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:09|77.97 KB|Sent|Message for arunkumar.seelan@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4898|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shakun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:10|70.02 KB|Sent|Message for arunkumar.shakun@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4899|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shakun@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:11|81.45 KB|Sent|Message for arunkumar.shakun@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4900|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.sharma1510@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:12|69.13 KB|Sent|Message for arunkumar.sharma1510@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4901|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shetty@kotak.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:13|63.6 KB|Sent|Message for arunkumar.shetty@kotak.com accepted by 121.241.26.139:25 (kotakntmum02.kotak.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.26:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.12.26:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.26:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4902|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shrivastava2009@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:15|95.67 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkumar.shrivastava2009@gmail.com to suppression list because delivery has failed 18 times. +4903|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.shukla696@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:16|63.11 KB|Sent|Message for arunkumar.shukla696@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4904|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.sista@nttdata.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:17|51.72 KB|Sent|Message for arunkumar.sista@nttdata.com accepted by 185.183.30.93:25 (mxb-004dc302.gslb.pphosted.com) +4905|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.sivanesan@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:18|61.73 KB|Sent|Message for arunkumar.sivanesan@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4906|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.sokhal@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:20|54.5 KB|Sent|Message for arunkumar.sokhal@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4907|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.sound@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:21|53.77 KB|Sent|Message for arunkumar.sound@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4908|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.ss20@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:22|54.7 KB|Sent|Message for arunkumar.ss20@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4909|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.ssn@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:23|52.92 KB|Sent|Message for arunkumar.ssn@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4910|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.stanes.psg@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:24|70.84 KB|Sent|Message for arunkumar.stanes.psg@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4911|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.sundram@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:26|53.36 KB|Sent|Message for arunkumar.sundram@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4912|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.t1973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:27|61.81 KB|Sent|Message for arunkumar.t1973@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4913|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.talla5@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:28|59.32 KB|Sent|Message for arunkumar.talla5@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4914|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.tallapragada@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:29|56.89 KB|Sent|Message for arunkumar.tallapragada@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta6.am0.yahoodns.net) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta6.am0.yahoodns.net) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta6.am0.yahoodns.net) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta6.am0.yahoodns.net) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta6.am0.yahoodns.net) +4915|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.thangavelu@ymail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:31|87.36 KB|Sent|Message for arunkumar.thangavelu@ymail.com accepted by 67.195.228.109:25 (mta7.am0.yahoodns.net) +4916|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.vazhkudi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:32|55.82 KB|Sent|Message for arunkumar.vazhkudi@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4917|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.vijay@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:33|81.64 KB|Sent|Message for arunkumar.vijay@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4918|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.vilasagaram@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:34|47.9 KB|Sent|Message for arunkumar.vilasagaram@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4919|eCAS_MutualFunds@manipaltechnologies.com|arunkumar.y.01311993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:35|52.32 KB|Sent|Message for arunkumar.y.01311993@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4920|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00067056@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:36|63.95 KB|Sent|Message for arunkumar00067056@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4921|eCAS_MutualFunds@manipaltechnologies.com|arunkumar0012008@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:38|57.34 KB|Sent|Message for arunkumar0012008@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4922|eCAS_MutualFunds@manipaltechnologies.com|arunkumar008380@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:39|65.48 KB|Sent|Message for arunkumar008380@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|An error occurred while sending the message to 98.136.96.75:25 (mta7.am0.yahoodns.net) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta5.am0.yahoodns.net) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta5.am0.yahoodns.net) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta7.am0.yahoodns.net) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta6.am0.yahoodns.net) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4923|eCAS_MutualFunds@manipaltechnologies.com|arunkumar00902@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:40|48.57 KB|Sent|Message for arunkumar00902@yahoo.com accepted by 67.195.228.94:25 (mta5.am0.yahoodns.net) +4924|eCAS_MutualFunds@manipaltechnologies.com|arunkumar0159@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:41|56.28 KB|Sent|Message for arunkumar0159@hotmail.com accepted by 52.101.8.35:25 (hotmail-com.olc.protection.outlook.com) +4925|eCAS_MutualFunds@manipaltechnologies.com|arunkumar01973@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:42|97.13 KB|Sent|Message for arunkumar01973@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4926|eCAS_MutualFunds@manipaltechnologies.com|arunkumar0212@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:44|66.84 KB|Sent|Message for arunkumar0212@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4927|eCAS_MutualFunds@manipaltechnologies.com|arunkumar02707@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:45|55.14 KB|Sent|Message for arunkumar02707@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4928|eCAS_MutualFunds@manipaltechnologies.com|arunkumar03041977@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:46|62.09 KB|Sent|Message for arunkumar03041977@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4929|eCAS_MutualFunds@manipaltechnologies.com|arunkumar03071989@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:47|54.26 KB|Sent|Message for arunkumar03071989@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4930|eCAS_MutualFunds@manipaltechnologies.com|arunkumar031091@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:48|64.57 KB|Sent|Message for arunkumar031091@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4931|eCAS_MutualFunds@manipaltechnologies.com|arunkumar033u@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:50|50.17 KB|Sent|Message for arunkumar033u@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4932|eCAS_MutualFunds@manipaltechnologies.com|arunkumar05003@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:51|58.7 KB|Sent|Message for arunkumar05003@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4933|eCAS_MutualFunds@manipaltechnologies.com|arunkumar052807@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:52|50.79 KB|Sent|Message for arunkumar052807@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4934|eCAS_MutualFunds@manipaltechnologies.com|arunkumar05606@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:53|64.63 KB|Sent|Message for arunkumar05606@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +4935|eCAS_MutualFunds@manipaltechnologies.com|arunkumar060757@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:54|61.7 KB|Sent|Message for arunkumar060757@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4936|eCAS_MutualFunds@manipaltechnologies.com|arunkumar0702@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:56|67.33 KB|Sent|Message for arunkumar0702@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4937|eCAS_MutualFunds@manipaltechnologies.com|arunkumar070676@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:57|48.58 KB|Sent|Message for arunkumar070676@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4938|eCAS_MutualFunds@manipaltechnologies.com|arunkumar08071969@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:58|49.72 KB|Sent|Message for arunkumar08071969@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4939|eCAS_MutualFunds@manipaltechnologies.com|arunkumar08639@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:35:59|67.58 KB|Sent|Message for arunkumar08639@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4940|eCAS_MutualFunds@manipaltechnologies.com|arunkumar08639@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:00|58.14 KB|Sent|Message for arunkumar08639@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4941|eCAS_MutualFunds@manipaltechnologies.com|arunkumar088@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:02|65.18 KB|Sent|Message for arunkumar088@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4942|eCAS_MutualFunds@manipaltechnologies.com|arunkumar0917@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:03|79.47 KB|Sent|Message for arunkumar0917@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4943|eCAS_MutualFunds@manipaltechnologies.com|arunkumar101078@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:04|55.18 KB|Sent|Message for arunkumar101078@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4944|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11011976@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:05|51.83 KB|Sent|Message for arunkumar11011976@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4945|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11065@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:06|55.64 KB|Sent|Message for arunkumar11065@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta7.am0.yahoodns.net) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta7.am0.yahoodns.net) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta5.am0.yahoodns.net) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta7.am0.yahoodns.net) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta5.am0.yahoodns.net) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4946|eCAS_MutualFunds@manipaltechnologies.com|arunkumar11183@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:07|57.22 KB|Sent|Message for arunkumar11183@yahoo.com accepted by 67.195.204.77:25 (mta5.am0.yahoodns.net) +4947|eCAS_MutualFunds@manipaltechnologies.com|arunkumar111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:09|71.47 KB|Sent|Message for arunkumar111@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4948|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1171@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:10|55.21 KB|Sent|Message for arunkumar1171@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4949|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1189.ak96@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:11|59.17 KB|Sent|Message for arunkumar1189.ak96@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4950|eCAS_MutualFunds@manipaltechnologies.com|arunkumar121993@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:12|56.84 KB|Sent|Message for arunkumar121993@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4951|eCAS_MutualFunds@manipaltechnologies.com|arunkumar123dmk@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:13|65.39 KB|Sent|Message for arunkumar123dmk@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4952|eCAS_MutualFunds@manipaltechnologies.com|arunkumar13pnb@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:15|55.18 KB|Sent|Message for arunkumar13pnb@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4953|eCAS_MutualFunds@manipaltechnologies.com|arunkumar140186@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:16|48.08 KB|Sent|Message for arunkumar140186@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4954|eCAS_MutualFunds@manipaltechnologies.com|arunkumar141063@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:17|72.62 KB|Sent|Message for arunkumar141063@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4955|eCAS_MutualFunds@manipaltechnologies.com|arunkumar14628797@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:18|79.16 KB|Sent|Message for arunkumar14628797@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4956|eCAS_MutualFunds@manipaltechnologies.com|arunkumar15021981@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:19|69.21 KB|Sent|Message for arunkumar15021981@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4957|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1548@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:21|57.09 KB|Sent|Message for arunkumar1548@hotmail.com accepted by 52.101.41.59:25 (hotmail-com.olc.protection.outlook.com) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta7.am0.yahoodns.net) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta5.am0.yahoodns.net) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta7.am0.yahoodns.net) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta7.am0.yahoodns.net) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta5.am0.yahoodns.net) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +4958|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1572@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:22|51.95 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.204.77:25 (mta5.am0.yahoodns.net) +4959|eCAS_MutualFunds@manipaltechnologies.com|arunkumar159.as@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:23|56.74 KB|Sent|Message for arunkumar159.as@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4960|eCAS_MutualFunds@manipaltechnologies.com|arunkumar16987@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:24|56.37 KB|Sent|Message for arunkumar16987@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4961|eCAS_MutualFunds@manipaltechnologies.com|arunkumar16das@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:25|68.28 KB|Sent|Message for arunkumar16das@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4962|eCAS_MutualFunds@manipaltechnologies.com|arunkumar16das@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:27|56.59 KB|Sent|Message for arunkumar16das@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4963|eCAS_MutualFunds@manipaltechnologies.com|arunkumar16das@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:28|70.89 KB|Sent|Message for arunkumar16das@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4964|eCAS_MutualFunds@manipaltechnologies.com|arunkumar172012@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:29|53.99 KB|Sent|Message for arunkumar172012@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4965|eCAS_MutualFunds@manipaltechnologies.com|arunkumar18011998@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:30|50.74 KB|Sent|Message for arunkumar18011998@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4966|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1841975@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:31|66.19 KB|Sent|Message for arunkumar1841975@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4967|eCAS_MutualFunds@manipaltechnologies.com|arunkumar190612@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:33|64.23 KB|Sent|Message for arunkumar190612@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4968|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1939@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:34|61.1 KB|Sent|Message for arunkumar1939@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|An error occurred while sending the message to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta7.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta7.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta6.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta7.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta7.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta6.am0.yahoodns.net) +4969|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1946@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:35|62.15 KB|Sent|Message for arunkumar1946@yahoo.com accepted by 67.195.228.110:25 (mta5.am0.yahoodns.net) +4970|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1958@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:36|60.4 KB|Sent|Message for arunkumar1958@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4971|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1959@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:37|52.18 KB|Sent|Message for arunkumar1959@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4972|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1971967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:39|56.83 KB|Sent|Message for arunkumar1971967@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4973|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1980hisua@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:40|49.44 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 98.136.96.75:25 (mta6.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta6.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 98.136.96.76:25 (mta7.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta6.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta7.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.228.110:25 (mta5.am0.yahoodns.net) +4974|eCAS_MutualFunds@manipaltechnologies.com|arunkumar198356@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:41|66.67 KB|HardFail|Permanent SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +4975|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1986@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:42|55.22 KB|Sent|Message for arunkumar1986@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4976|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1986babli@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:43|54.56 KB|Sent|Message for arunkumar1986babli@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4977|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1986chiru@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:44|50.67 KB|Sent|Message for arunkumar1986chiru@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4978|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1988a@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:46|66.77 KB|Sent|Message for arunkumar1988a@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4979|eCAS_MutualFunds@manipaltechnologies.com|arunkumar19940505@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:47|52.69 KB|Sent|Message for arunkumar19940505@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4980|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1996mbd@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:48|63.96 KB|Sent|Message for arunkumar1996mbd@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4981|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1@genpact.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:49|52.46 KB|HardFail|Temporary SMTP delivery error when sending to 194.104.110.22:25 (de-smtp-inbound-1.mimecast.com) +4981|eCAS_MutualFunds@manipaltechnologies.com|arunkumar1@genpact.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:49|52.46 KB|HardFail|Permanent SMTP delivery error when sending to 194.104.108.22:25 (de-smtp-inbound-2.mimecast.com) +4982|eCAS_MutualFunds@manipaltechnologies.com|arunkumar201074@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:50|64.85 KB|Sent|Message for arunkumar201074@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +4983|eCAS_MutualFunds@manipaltechnologies.com|arunkumar2014.ak66@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:52|54.96 KB|Sent|Message for arunkumar2014.ak66@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4984|eCAS_MutualFunds@manipaltechnologies.com|arunkumar201998@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:53|49.03 KB|Sent|Message for arunkumar201998@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4985|eCAS_MutualFunds@manipaltechnologies.com|arunkumar2076@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:54|55.35 KB|Sent|Message for arunkumar2076@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4986|eCAS_MutualFunds@manipaltechnologies.com|arunkumar21032002@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:55|51.49 KB|Sent|Message for arunkumar21032002@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4987|eCAS_MutualFunds@manipaltechnologies.com|arunkumar220494@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:56|48.1 KB|Sent|Message for arunkumar220494@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4988|eCAS_MutualFunds@manipaltechnologies.com|arunkumar221967@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:58|49.01 KB|Sent|Message for arunkumar221967@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4989|eCAS_MutualFunds@manipaltechnologies.com|arunkumar23295@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:36:59|49.36 KB|Sent|Message for arunkumar23295@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4990|eCAS_MutualFunds@manipaltechnologies.com|arunkumar24@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:00|67.62 KB|Sent|Message for arunkumar24@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4991|eCAS_MutualFunds@manipaltechnologies.com|arunkumar25051950@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:01|63.36 KB|Sent|Message for arunkumar25051950@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4992|eCAS_MutualFunds@manipaltechnologies.com|arunkumar25051950@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:02|58.08 KB|Sent|Message for arunkumar25051950@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4993|eCAS_MutualFunds@manipaltechnologies.com|arunkumar2691995@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:04|61.35 KB|Sent|Message for arunkumar2691995@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4994|eCAS_MutualFunds@manipaltechnologies.com|arunkumar27292@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:05|51.24 KB|Sent|Message for arunkumar27292@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +4995|eCAS_MutualFunds@manipaltechnologies.com|arunkumar2778@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:06|60.2 KB|Sent|Message for arunkumar2778@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4996|eCAS_MutualFunds@manipaltechnologies.com|arunkumar281984@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:07|65.51 KB|Sent|Message for arunkumar281984@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4997|eCAS_MutualFunds@manipaltechnologies.com|arunkumar281@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:08|60.42 KB|Sent|Message for arunkumar281@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4998|eCAS_MutualFunds@manipaltechnologies.com|arunkumar28590@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:09|59.24 KB|Sent|Message for arunkumar28590@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +4999|eCAS_MutualFunds@manipaltechnologies.com|arunkumar2988@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:11|55.39 KB|Sent|Message for arunkumar2988@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5000|eCAS_MutualFunds@manipaltechnologies.com|arunkumar2water@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:12|54.7 KB|Sent|Message for arunkumar2water@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5001|eCAS_MutualFunds@manipaltechnologies.com|arunkumar300861@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:13|58.98 KB|Sent|Message for arunkumar300861@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5002|eCAS_MutualFunds@manipaltechnologies.com|arunkumar310311@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:14|76.41 KB|Sent|Message for arunkumar310311@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5003|eCAS_MutualFunds@manipaltechnologies.com|arunkumar3205@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:15|58.68 KB|Sent|Message for arunkumar3205@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5004|eCAS_MutualFunds@manipaltechnologies.com|arunkumar3231@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:17|57.57 KB|Sent|Message for arunkumar3231@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5005|eCAS_MutualFunds@manipaltechnologies.com|arunkumar333777@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:18|67.85 KB|Sent|Message for arunkumar333777@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +5006|eCAS_MutualFunds@manipaltechnologies.com|arunkumar341178@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:19|52.69 KB|Sent|Message for arunkumar341178@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +5007|eCAS_MutualFunds@manipaltechnologies.com|arunkumar3548shri@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:20|52.7 KB|HardFail|Permanent SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +5008|eCAS_MutualFunds@manipaltechnologies.com|arunkumar371991@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:21|57.03 KB|Sent|Message for arunkumar371991@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +5009|eCAS_MutualFunds@manipaltechnologies.com|arunkumar3720@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:23|56.43 KB|Sent|Message for arunkumar3720@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5010|eCAS_MutualFunds@manipaltechnologies.com|arunkumar3855@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:24|59.99 KB|Sent|Message for arunkumar3855@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5011|eCAS_MutualFunds@manipaltechnologies.com|arunkumar395@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:25|70.36 KB|Sent|Message for arunkumar395@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta7.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|An error occurred while sending the message to 67.195.228.111:25 (mta7.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta7.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta7.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta7.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.74:25 (mta5.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta6.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta7.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.76:25 (mta6.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta7.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta6.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +5012|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4126@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:26|62.67 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.204.73:25 (mta7.am0.yahoodns.net) +5013|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4253@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:27|75.41 KB|Sent|Message for arunkumar4253@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5014|eCAS_MutualFunds@manipaltechnologies.com|arunkumar43385@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:29|57.0 KB|Sent|Message for arunkumar43385@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5015|eCAS_MutualFunds@manipaltechnologies.com|arunkumar441@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:30|68.99 KB|Sent|Message for arunkumar441@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5016|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4485@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:31|63.21 KB|Sent|Message for arunkumar4485@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5017|eCAS_MutualFunds@manipaltechnologies.com|arunkumar45130@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:32|56.72 KB|Sent|Message for arunkumar45130@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5018|eCAS_MutualFunds@manipaltechnologies.com|arunkumar47684@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:33|68.72 KB|Sent|Message for arunkumar47684@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5019|eCAS_MutualFunds@manipaltechnologies.com|arunkumar48534@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:35|57.91 KB|Sent|Message for arunkumar48534@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5020|eCAS_MutualFunds@manipaltechnologies.com|arunkumar4995@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:36|59.21 KB|Sent|Message for arunkumar4995@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5021|eCAS_MutualFunds@manipaltechnologies.com|arunkumar502@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:37|52.74 KB|Sent|Message for arunkumar502@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +5022|eCAS_MutualFunds@manipaltechnologies.com|arunkumar50533@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:38|83.18 KB|Sent|Message for arunkumar50533@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +5023|eCAS_MutualFunds@manipaltechnologies.com|arunkumar51@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:39|84.99 KB|Sent|Message for arunkumar51@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +5024|eCAS_MutualFunds@manipaltechnologies.com|arunkumar54143@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:41|56.64 KB|Sent|Message for arunkumar54143@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5025|eCAS_MutualFunds@manipaltechnologies.com|arunkumar54143@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:42|57.21 KB|Sent|Message for arunkumar54143@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5026|eCAS_MutualFunds@manipaltechnologies.com|arunkumar573073@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:43|53.28 KB|Sent|Message for arunkumar573073@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5027|eCAS_MutualFunds@manipaltechnologies.com|arunkumar57917@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:44|50.29 KB|Sent|Message for arunkumar57917@gmail.com accepted by 172.217.194.27:25 (gmail-smtp-in.l.google.com) +5028|eCAS_MutualFunds@manipaltechnologies.com|arunkumar5865@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:45|77.0 KB|Sent|Message for arunkumar5865@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5029|eCAS_MutualFunds@manipaltechnologies.com|arunkumar59169@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:47|58.05 KB|Sent|Message for arunkumar59169@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5030|eCAS_MutualFunds@manipaltechnologies.com|arunkumar59953@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:48|51.92 KB|Sent|Message for arunkumar59953@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5031|eCAS_MutualFunds@manipaltechnologies.com|arunkumar6111@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:49|56.91 KB|Sent|Message for arunkumar6111@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5032|eCAS_MutualFunds@manipaltechnologies.com|arunkumar61313@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:50|55.12 KB|Sent|Message for arunkumar61313@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5033|eCAS_MutualFunds@manipaltechnologies.com|arunkumar6206@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:51|60.51 KB|Sent|Message for arunkumar6206@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5034|eCAS_MutualFunds@manipaltechnologies.com|arunkumar6211@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:52|61.3 KB|Sent|Message for arunkumar6211@rediffmail.com accepted by 202.137.234.32:25 (mx.rediffmail.rediff.akadns.net) +5035|eCAS_MutualFunds@manipaltechnologies.com|arunkumar62600@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:54|69.62 KB|Sent|Message for arunkumar62600@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5036|eCAS_MutualFunds@manipaltechnologies.com|arunkumar62950@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:55|79.48 KB|Sent|Message for arunkumar62950@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5037|eCAS_MutualFunds@manipaltechnologies.com|arunkumar630@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:56|68.53 KB|Sent|Message for arunkumar630@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5038|eCAS_MutualFunds@manipaltechnologies.com|arunkumar63735@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:57|48.21 KB|Sent|Message for arunkumar63735@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5039|eCAS_MutualFunds@manipaltechnologies.com|arunkumar6393@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:37:58|55.83 KB|Sent|Message for arunkumar6393@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +5040|eCAS_MutualFunds@manipaltechnologies.com|arunkumar64688@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:00|67.14 KB|Sent|Message for arunkumar64688@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5041|eCAS_MutualFunds@manipaltechnologies.com|arunkumar6486@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:01|69.01 KB|Sent|Message for arunkumar6486@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5042|eCAS_MutualFunds@manipaltechnologies.com|arunkumar65266@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:02|49.7 KB|Sent|Message for arunkumar65266@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +5043|eCAS_MutualFunds@manipaltechnologies.com|arunkumar6673@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:03|57.53 KB|Sent|Message for arunkumar6673@gmail.com accepted by 74.125.130.26:25 (gmail-smtp-in.l.google.com) +5044|eCAS_MutualFunds@manipaltechnologies.com|arunkumar667729@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:04|58.45 KB|Sent|Message for arunkumar667729@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5045|eCAS_MutualFunds@manipaltechnologies.com|arunkumar6929@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:06|73.23 KB|Sent|Message for arunkumar6929@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5046|eCAS_MutualFunds@manipaltechnologies.com|arunkumar700315@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:07|66.44 KB|Sent|Message for arunkumar700315@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5047|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7107@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:08|54.58 KB|Sent|Message for arunkumar7107@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5048|eCAS_MutualFunds@manipaltechnologies.com|arunkumar71@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:09|65.66 KB|Sent|Message for arunkumar71@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5049|eCAS_MutualFunds@manipaltechnologies.com|arunkumar72909138@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:10|52.99 KB|Sent|Message for arunkumar72909138@gmail.com accepted by 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5050|eCAS_MutualFunds@manipaltechnologies.com|arunkumar73182@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:12|55.25 KB|Sent|Message for arunkumar73182@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5051|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7358839376@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:13|54.71 KB|Sent|Message for arunkumar7358839376@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5052|eCAS_MutualFunds@manipaltechnologies.com|arunkumar74421@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:14|58.91 KB|Sent|Message for arunkumar74421@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5053|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7488169699@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:15|67.45 KB|Sent|Message for arunkumar7488169699@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5054|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7545@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:16|85.19 KB|Sent|Message for arunkumar7545@yahoo.co.in accepted by 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5055|eCAS_MutualFunds@manipaltechnologies.com|arunkumar75727@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:18|50.03 KB|Sent|Message for arunkumar75727@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5056|eCAS_MutualFunds@manipaltechnologies.com|arunkumar75@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:19|56.05 KB|Sent|Message for arunkumar75@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5057|eCAS_MutualFunds@manipaltechnologies.com|arunkumar75yr@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:20|57.92 KB|Sent|Message for arunkumar75yr@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +5058|eCAS_MutualFunds@manipaltechnologies.com|arunkumar7714@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:21|63.36 KB|Sent|Message for arunkumar7714@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +5059|eCAS_MutualFunds@manipaltechnologies.com|arunkumar776100@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:22|61.83 KB|Sent|Message for arunkumar776100@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +5060|eCAS_MutualFunds@manipaltechnologies.com|arunkumar785233@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:24|65.71 KB|Sent|Message for arunkumar785233@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +5061|eCAS_MutualFunds@manipaltechnologies.com|arunkumar790181@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:25|49.03 KB|Sent|Message for arunkumar790181@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5062|eCAS_MutualFunds@manipaltechnologies.com|arunkumar81184@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:26|60.13 KB|Sent|Message for arunkumar81184@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5063|eCAS_MutualFunds@manipaltechnologies.com|arunkumar82512@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:27|62.95 KB|Sent|Message for arunkumar82512@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5064|eCAS_MutualFunds@manipaltechnologies.com|arunkumar839829@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:28|49.7 KB|Sent|Message for arunkumar839829@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5065|eCAS_MutualFunds@manipaltechnologies.com|arunkumar854315@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:29|57.56 KB|Sent|Message for arunkumar854315@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +5066|eCAS_MutualFunds@manipaltechnologies.com|arunkumar856989@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:31|55.95 KB|Sent|Message for arunkumar856989@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +5067|eCAS_MutualFunds@manipaltechnologies.com|arunkumar8744@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:32|51.21 KB|Sent|Message for arunkumar8744@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5068|eCAS_MutualFunds@manipaltechnologies.com|arunkumar881182@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:33|51.89 KB|Sent|Message for arunkumar881182@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5069|eCAS_MutualFunds@manipaltechnologies.com|arunkumar8828@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:34|51.93 KB|Sent|Message for arunkumar8828@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5070|eCAS_MutualFunds@manipaltechnologies.com|arunkumar8858@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:35|64.23 KB|Sent|Message for arunkumar8858@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5071|eCAS_MutualFunds@manipaltechnologies.com|arunkumar890@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:37|52.22 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5072|eCAS_MutualFunds@manipaltechnologies.com|arunkumar89285@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:38|57.78 KB|Sent|Message for arunkumar89285@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5073|eCAS_MutualFunds@manipaltechnologies.com|arunkumar89@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:39|60.51 KB|Sent|Message for arunkumar89@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +5074|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9006868@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:40|66.53 KB|Sent|Message for arunkumar9006868@gmail.com accepted by 74.125.24.26:25 (gmail-smtp-in.l.google.com) +5075|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9149@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:41|60.41 KB|Sent|Message for arunkumar9149@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta6.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.94:25 (mta7.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta6.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta5.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta5.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.91:25 (mta6.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.77:25 (mta7.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.109:25 (mta7.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.79:25 (mta5.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.110:25 (mta6.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.73:25 (mta6.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta7.am0.yahoodns.net) +5076|eCAS_MutualFunds@manipaltechnologies.com|arunkumar91_m19@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:43|54.11 KB|Sent|Message for arunkumar91_m19@yahoo.com accepted by 98.136.96.91:25 (mta6.am0.yahoodns.net) +5077|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9247271044@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:44|54.35 KB|Sent|Message for arunkumar9247271044@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 172.253.118.26:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 64.233.170.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.10.26:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.200.26:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 142.251.175.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 172.217.194.27:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.24.26:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Temporary SMTP delivery error when sending to 74.125.130.26:25 (gmail-smtp-in.l.google.com) +5078|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9431325622@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:45|64.37 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkumar9431325622@gmail.com to suppression list because delivery has failed 18 times. +5079|eCAS_MutualFunds@manipaltechnologies.com|arunkumar94611@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:46|68.78 KB|Sent|Message for arunkumar94611@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5080|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9546901331@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:47|98.76 KB|Sent|Message for arunkumar9546901331@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5081|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9546901331@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:49|52.73 KB|Sent|Message for arunkumar9546901331@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5082|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9565470854@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:50|52.02 KB|Sent|Message for arunkumar9565470854@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5083|eCAS_MutualFunds@manipaltechnologies.com|arunkumar956@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:51|67.41 KB|Sent|Message for arunkumar956@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5084|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9648ak@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:52|73.13 KB|Sent|Message for arunkumar9648ak@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5085|eCAS_MutualFunds@manipaltechnologies.com|arunkumar970026776@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:53|66.53 KB|Sent|Message for arunkumar970026776@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5086|eCAS_MutualFunds@manipaltechnologies.com|arunkumar98079@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:55|61.8 KB|Sent|Message for arunkumar98079@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5087|eCAS_MutualFunds@manipaltechnologies.com|arunkumar98530@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:56|55.39 KB|Sent|Message for arunkumar98530@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5088|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9871423006@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:57|62.78 KB|Sent|Message for arunkumar9871423006@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5089|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9873093272@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:58|49.83 KB|Sent|Message for arunkumar9873093272@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5090|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9876@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:38:59|73.54 KB|Sent|Message for arunkumar9876@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5091|eCAS_MutualFunds@manipaltechnologies.com|arunkumar98m@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:01|55.59 KB|Sent|Message for arunkumar98m@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5092|eCAS_MutualFunds@manipaltechnologies.com|arunkumar99319@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:02|52.64 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5093|eCAS_MutualFunds@manipaltechnologies.com|arunkumar9955189620@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:03|58.11 KB|Sent|Message for arunkumar9955189620@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|No SMTP servers were available for gmail.co. No hosts to try. +5094|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@gmail.co|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:04|51.69 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkumar@gmail.co to suppression list because delivery has failed 18 times. +5095|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@sisindia.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:05|61.72 KB|HardFail|Permanent SMTP delivery error when sending to 103.137.165.226:25 (mx1-cluster13.immenzaces.com) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta7.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta6.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +5096|eCAS_MutualFunds@manipaltechnologies.com|arunkumar@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:06|54.4 KB|HardFail|Permanent SMTP delivery error when sending to 98.136.96.91:25 (mta6.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta6.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +5097|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_1954@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:08|56.41 KB|Sent|Message for arunkumar_1954@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta6.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +5098|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_6106@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:09|48.96 KB|Sent|Message for arunkumar_6106@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 98.136.96.77:25 (mta7.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.204.73:25 (mta6.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +5099|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_97@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:10|51.74 KB|Sent|Message for arunkumar_97@yahoo.com accepted by 98.136.96.75:25 (mta7.am0.yahoodns.net) +5100|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_behera129@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:11|64.43 KB|HardFail|Permanent SMTP delivery error when sending to 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|Temporary SMTP delivery error when sending to 67.195.228.111:25 (mta7.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.94:25 (mta7.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.204.74:25 (mta7.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta6.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta6.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta5.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta5.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.204.77:25 (mta7.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.109:25 (mta7.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.204.79:25 (mta5.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.110:25 (mta6.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.204.73:25 (mta6.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 67.195.228.106:25 (mta7.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|An error occurred while sending the message to 98.136.96.91:25 (mta6.am0.yahoodns.net) +5101|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bhattcharyya@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:12|51.59 KB|HardFail|Permanent SMTP delivery error when sending to 98.136.96.75:25 (mta7.am0.yahoodns.net) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.145:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.145:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.145:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5102|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:14|105.73 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkumar_bp@infosys.com to suppression list because delivery has failed 18 times. +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.145:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.145:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.145:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.147:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Temporary SMTP delivery error when sending to 18.185.115.146:25 (infosyslimited.in.tmes.trendmicro.eu) +5103|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_bp@infosys.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:15|82.56 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkumar_bp@infosys.com to suppression list because delivery has failed 18 times. +5104|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_c2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:16|53.82 KB|Sent|Temporary SMTP delivery error when sending to 67.195.228.106:25 (mta7.am0.yahoodns.net) +5104|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_c2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:16|53.82 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +5104|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_c2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:16|53.82 KB|Sent|Temporary SMTP delivery error when sending to 67.195.204.72:25 (mta7.am0.yahoodns.net) +5104|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_c2002@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:16|53.82 KB|Sent|Message for arunkumar_c2002@yahoo.com accepted by 67.195.204.72:25 (mta6.am0.yahoodns.net) +5105|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_diwaker@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:17|53.39 KB|Sent|Message for arunkumar_diwaker@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|No SMTP servers were available for infotechsw.com. No hosts to try. +5106|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_g@infotechsw.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:18|47.78 KB|HardFail|Maximum number of delivery attempts (18) has been reached. Added arunkumar_g@infotechsw.com to suppression list because delivery has failed 18 times. +5107|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_kaki@rediffmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:20|52.18 KB|Sent|Message for arunkumar_kaki@rediffmail.com accepted by 202.137.234.30:25 (mx.rediffmail.rediff.akadns.net) +5108|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_kale@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:21|84.25 KB|Sent|Message for arunkumar_kale@hotmail.com accepted by 52.101.73.17:25 (hotmail-com.olc.protection.outlook.com) +5109|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_kola@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:22|52.33 KB|Sent|Message for arunkumar_kola@hotmail.com accepted by 52.101.73.17:25 (hotmail-com.olc.protection.outlook.com) +5110|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_m@hotmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:23|52.5 KB|Sent|Message for arunkumar_m@hotmail.com accepted by 52.101.73.27:25 (hotmail-com.olc.protection.outlook.com) +5111|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_mng@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:24|56.98 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5111|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_mng@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:24|56.98 KB|HardFail|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5111|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_mng@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:24|56.98 KB|HardFail|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5111|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_mng@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:24|56.98 KB|HardFail|Permanent SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|An error occurred while sending the message to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|An error occurred while sending the message to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.74:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|Temporary SMTP delivery error when sending to 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5112|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_tiwari15@yahoo.co.in|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:26|68.2 KB|Sent|Message for arunkumar_tiwari15@yahoo.co.in accepted by 106.10.248.73:25 (mx-apac.mail.gm0.yahoodns.net) +5113|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_vadamodalu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:27|71.25 KB|Sent|Temporary SMTP delivery error when sending to 98.136.96.77:25 (mta6.am0.yahoodns.net) +5113|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_vadamodalu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:27|71.25 KB|Sent|An error occurred while sending the message to 67.195.228.111:25 (mta6.am0.yahoodns.net) +5113|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_vadamodalu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:27|71.25 KB|Sent|An error occurred while sending the message to 67.195.204.72:25 (mta7.am0.yahoodns.net) +5113|eCAS_MutualFunds@manipaltechnologies.com|arunkumar_vadamodalu@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:27|71.25 KB|Sent|Message for arunkumar_vadamodalu@yahoo.com accepted by 67.195.204.72:25 (mta6.am0.yahoodns.net) +5114|eCAS_MutualFunds@manipaltechnologies.com|arunkumara77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:28|61.36 KB|Sent|Message for arunkumara77@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5115|eCAS_MutualFunds@manipaltechnologies.com|arunkumarachari41@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:29|58.08 KB|Sent|Message for arunkumarachari41@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5116|eCAS_MutualFunds@manipaltechnologies.com|arunkumaracharya77@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:30|49.82 KB|Sent|Message for arunkumaracharya77@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5117|eCAS_MutualFunds@manipaltechnologies.com|arunkumaradhikary1972@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:32|75.89 KB|Sent|Message for arunkumaradhikary1972@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5118|eCAS_MutualFunds@manipaltechnologies.com|arunkumaradi.kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:33|58.31 KB|Sent|Message for arunkumaradi.kumar@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5119|eCAS_MutualFunds@manipaltechnologies.com|arunkumaradv61@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:34|70.71 KB|Sent|Message for arunkumaradv61@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5120|eCAS_MutualFunds@manipaltechnologies.com|arunkumaradv61@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:35|68.59 KB|Sent|Message for arunkumaradv61@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5121|eCAS_MutualFunds@manipaltechnologies.com|arunkumarag07@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:36|52.13 KB|Sent|Message for arunkumarag07@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5122|eCAS_MutualFunds@manipaltechnologies.com|arunkumaragarwal0549@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:37|66.29 KB|Sent|Message for arunkumaragarwal0549@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5123|eCAS_MutualFunds@manipaltechnologies.com|arunkumaragarwal588@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:39|50.67 KB|Sent|Message for arunkumaragarwal588@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5124|eCAS_MutualFunds@manipaltechnologies.com|arunkumaragrawal06@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:40|48.77 KB|Sent|Message for arunkumaragrawal06@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5125|eCAS_MutualFunds@manipaltechnologies.com|arunkumaragrawal74@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:41|69.69 KB|Sent|Message for arunkumaragrawal74@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5126|eCAS_MutualFunds@manipaltechnologies.com|arunkumarahlawat@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:42|69.15 KB|Sent|Message for arunkumarahlawat@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5127|eCAS_MutualFunds@manipaltechnologies.com|arunkumaraj288@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:44|57.32 KB|Sent|Message for arunkumaraj288@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5128|eCAS_MutualFunds@manipaltechnologies.com|arunkumarajanbi@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:45|49.37 KB|Sent|Message for arunkumarajanbi@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5129|eCAS_MutualFunds@manipaltechnologies.com|arunkumarak199601@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:46|55.52 KB|Sent|Message for arunkumarak199601@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5130|eCAS_MutualFunds@manipaltechnologies.com|arunkumarak4777@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:47|62.1 KB|Sent|Message for arunkumarak4777@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5131|eCAS_MutualFunds@manipaltechnologies.com|arunkumarakic4664@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:48|51.88 KB|Sent|Message for arunkumarakic4664@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5132|eCAS_MutualFunds@manipaltechnologies.com|arunkumarakki500@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:49|65.71 KB|Sent|Message for arunkumarakki500@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5133|eCAS_MutualFunds@manipaltechnologies.com|arunkumaram31@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:51|67.73 KB|Sent|Message for arunkumaram31@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5134|eCAS_MutualFunds@manipaltechnologies.com|arunkumaram435@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:52|52.1 KB|Sent|Message for arunkumaram435@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5135|eCAS_MutualFunds@manipaltechnologies.com|arunkumaramar278@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:53|59.08 KB|Sent|Message for arunkumaramar278@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5136|eCAS_MutualFunds@manipaltechnologies.com|arunkumaramar50@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:54|56.4 KB|Sent|Message for arunkumaramar50@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5137|eCAS_MutualFunds@manipaltechnologies.com|arunkumaranotra@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:55|57.91 KB|Sent|Message for arunkumaranotra@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5138|eCAS_MutualFunds@manipaltechnologies.com|arunkumarap032@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:56|79.94 KB|Sent|Message for arunkumarap032@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5139|eCAS_MutualFunds@manipaltechnologies.com|arunkumararnkar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:58|50.33 KB|Sent|Message for arunkumararnkar@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5140|eCAS_MutualFunds@manipaltechnologies.com|arunkumararptks@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:59|69.28 KB|HardFail|Temporary SMTP delivery error when sending to 98.136.96.74:25 (mta7.am0.yahoodns.net) +5140|eCAS_MutualFunds@manipaltechnologies.com|arunkumararptks@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:59|69.28 KB|HardFail|An error occurred while sending the message to 98.136.96.74:25 (mta6.am0.yahoodns.net) +5140|eCAS_MutualFunds@manipaltechnologies.com|arunkumararptks@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:59|69.28 KB|HardFail|An error occurred while sending the message to 67.195.204.72:25 (mta7.am0.yahoodns.net) +5140|eCAS_MutualFunds@manipaltechnologies.com|arunkumararptks@yahoo.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:39:59|69.28 KB|HardFail|Permanent SMTP delivery error when sending to 67.195.204.72:25 (mta6.am0.yahoodns.net) +5141|eCAS_MutualFunds@manipaltechnologies.com|arunkumararuk4@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:40:00|66.28 KB|Sent|Message for arunkumararuk4@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5142|eCAS_MutualFunds@manipaltechnologies.com|arunkumararun7648@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:40:01|47.91 KB|Sent|Message for arunkumararun7648@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5143|eCAS_MutualFunds@manipaltechnologies.com|arunkumararuni.aka@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:40:02|81.65 KB|Sent|Message for arunkumararuni.aka@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5144|eCAS_MutualFunds@manipaltechnologies.com|arunkumararunkumar4542@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:40:04|58.12 KB|Sent|Message for arunkumararunkumar4542@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5145|eCAS_MutualFunds@manipaltechnologies.com|arunkumararunkumar8929@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:40:05|49.94 KB|Sent|Message for arunkumararunkumar8929@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5146|eCAS_MutualFunds@manipaltechnologies.com|arunkumaraso.kumar@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:40:06|52.43 KB|Sent|Message for arunkumaraso.kumar@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5147|eCAS_MutualFunds@manipaltechnologies.com|arunkumarau54@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:40:07|50.09 KB|Sent|Message for arunkumarau54@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5148|eCAS_MutualFunds@manipaltechnologies.com|arunkumarb1962@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:40:08|52.74 KB|Sent|Message for arunkumarb1962@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5149|eCAS_MutualFunds@manipaltechnologies.com|arunkumarb710@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:40:09|61.42 KB|Sent|Message for arunkumarb710@gmail.com accepted by 74.125.68.26:25 (gmail-smtp-in.l.google.com) +5150|eCAS_MutualFunds@manipaltechnologies.com|arunkumarbadiger27@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:40:11|49.84 KB|Sent|Message for arunkumarbadiger27@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5151|eCAS_MutualFunds@manipaltechnologies.com|arunkumarbag@gmail.com|September-2024, Consolidated Account Statement (CAS) across Mutual Funds|29-10-2024|12:40:12|61.04 KB|Sent|Message for arunkumarbag@gmail.com accepted by 74.125.200.27:25 (gmail-smtp-in.l.google.com) +5152|test.user@manipalgroup.info|ishwar.u@manipalgroup.info|Test1|15-11-2024|09:39:55|2.49 KB|Sent|Message for ishwar.u@manipalgroup.info accepted by 125.22.91.112:25 (mx1.manipalgroup.info) diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..2be3af2 --- /dev/null +++ b/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
+
+

The page you were looking for doesn't exist.

+

You may have mistyped the address or the page may have moved.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/422.html b/public/422.html new file mode 100644 index 0000000..c08eac0 --- /dev/null +++ b/public/422.html @@ -0,0 +1,67 @@ + + + + The change you wanted was rejected (422) + + + + + + +
+
+

The change you wanted was rejected.

+

Maybe you tried to change something you didn't have access to.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/500.html b/public/500.html new file mode 100644 index 0000000..78a030a --- /dev/null +++ b/public/500.html @@ -0,0 +1,66 @@ + + + + We're sorry, but something went wrong (500) + + + + + + +
+
+

We're sorry, but something went wrong.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/apple-touch-icon-precomposed.png b/public/apple-touch-icon-precomposed.png new file mode 100644 index 0000000..e69de29 diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..e69de29 diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..c19f78a --- /dev/null +++ b/public/robots.txt @@ -0,0 +1 @@ +# See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file diff --git a/storage/.keep b/storage/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb new file mode 100644 index 0000000..d19212a --- /dev/null +++ b/test/application_system_test_case.rb @@ -0,0 +1,5 @@ +require "test_helper" + +class ApplicationSystemTestCase < ActionDispatch::SystemTestCase + driven_by :selenium, using: :chrome, screen_size: [1400, 1400] +end diff --git a/test/channels/application_cable/connection_test.rb b/test/channels/application_cable/connection_test.rb new file mode 100644 index 0000000..800405f --- /dev/null +++ b/test/channels/application_cable/connection_test.rb @@ -0,0 +1,11 @@ +require "test_helper" + +class ApplicationCable::ConnectionTest < ActionCable::Connection::TestCase + # test "connects with cookies" do + # cookies.signed[:user_id] = 42 + # + # connect + # + # assert_equal connection.user_id, "42" + # end +end diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/controllers/deliveries_controller_test.rb b/test/controllers/deliveries_controller_test.rb new file mode 100644 index 0000000..ae8c198 --- /dev/null +++ b/test/controllers/deliveries_controller_test.rb @@ -0,0 +1,48 @@ +require "test_helper" + +class DeliveriesControllerTest < ActionDispatch::IntegrationTest + setup do + @delivery = deliveries(:one) + end + + test "should get index" do + get deliveries_url + assert_response :success + end + + test "should get new" do + get new_delivery_url + assert_response :success + end + + test "should create delivery" do + assert_difference("Delivery.count") do + post deliveries_url, params: { delivery: { code: @delivery.code, details: @delivery.details, log_id: @delivery.log_id, message_id: @delivery.message_id, output: @delivery.output, sent_with_ssl: @delivery.sent_with_ssl, status: @delivery.status, time: @delivery.time, timestamp: @delivery.timestamp } } + end + + assert_redirected_to delivery_url(Delivery.last) + end + + test "should show delivery" do + get delivery_url(@delivery) + assert_response :success + end + + test "should get edit" do + get edit_delivery_url(@delivery) + assert_response :success + end + + test "should update delivery" do + patch delivery_url(@delivery), params: { delivery: { code: @delivery.code, details: @delivery.details, log_id: @delivery.log_id, message_id: @delivery.message_id, output: @delivery.output, sent_with_ssl: @delivery.sent_with_ssl, status: @delivery.status, time: @delivery.time, timestamp: @delivery.timestamp } } + assert_redirected_to delivery_url(@delivery) + end + + test "should destroy delivery" do + assert_difference("Delivery.count", -1) do + delete delivery_url(@delivery) + end + + assert_redirected_to deliveries_url + end +end diff --git a/test/controllers/messages_controller_test.rb b/test/controllers/messages_controller_test.rb new file mode 100644 index 0000000..b11857e --- /dev/null +++ b/test/controllers/messages_controller_test.rb @@ -0,0 +1,48 @@ +require "test_helper" + +class MessagesControllerTest < ActionDispatch::IntegrationTest + setup do + @message = messages(:one) + end + + test "should get index" do + get messages_url + assert_response :success + end + + test "should get new" do + get new_message_url + assert_response :success + end + + test "should create message" do + assert_difference("Message.count") do + post messages_url, params: { message: { bounce: @message.bounce, bounce_for_id: @message.bounce_for_id, clicked: @message.clicked, credential_id: @message.credential_id, domain_id: @message.domain_id, endpoint_id: @message.endpoint_id, endpoint_type: @message.endpoint_type, held: @message.held, hold_expiry: @message.hold_expiry, inspected: @message.inspected, last_delivery_attempt: @message.last_delivery_attempt, loaded: @message.loaded, mail_from: @message.mail_from, message_id: @message.message_id, parsed: @message.parsed, raw_body_id: @message.raw_body_id, raw_headers_id: @message.raw_headers_id, raw_table: @message.raw_table, rcpt_to: @message.rcpt_to, received_with_ssl: @message.received_with_ssl, route_id: @message.route_id, scope: @message.scope, size: @message.size, spam: @message.spam, spam_score: @message.spam_score, status: @message.status, subject: @message.subject, tag: @message.tag, threat: @message.threat, threat_details: @message.threat_details, timestamp: @message.timestamp, token: @message.token, tracked_images: @message.tracked_images, tracked_links: @message.tracked_links } } + end + + assert_redirected_to message_url(Message.last) + end + + test "should show message" do + get message_url(@message) + assert_response :success + end + + test "should get edit" do + get edit_message_url(@message) + assert_response :success + end + + test "should update message" do + patch message_url(@message), params: { message: { bounce: @message.bounce, bounce_for_id: @message.bounce_for_id, clicked: @message.clicked, credential_id: @message.credential_id, domain_id: @message.domain_id, endpoint_id: @message.endpoint_id, endpoint_type: @message.endpoint_type, held: @message.held, hold_expiry: @message.hold_expiry, inspected: @message.inspected, last_delivery_attempt: @message.last_delivery_attempt, loaded: @message.loaded, mail_from: @message.mail_from, message_id: @message.message_id, parsed: @message.parsed, raw_body_id: @message.raw_body_id, raw_headers_id: @message.raw_headers_id, raw_table: @message.raw_table, rcpt_to: @message.rcpt_to, received_with_ssl: @message.received_with_ssl, route_id: @message.route_id, scope: @message.scope, size: @message.size, spam: @message.spam, spam_score: @message.spam_score, status: @message.status, subject: @message.subject, tag: @message.tag, threat: @message.threat, threat_details: @message.threat_details, timestamp: @message.timestamp, token: @message.token, tracked_images: @message.tracked_images, tracked_links: @message.tracked_links } } + assert_redirected_to message_url(@message) + end + + test "should destroy message" do + assert_difference("Message.count", -1) do + delete message_url(@message) + end + + assert_redirected_to messages_url + end +end diff --git a/test/fixtures/deliveries.yml b/test/fixtures/deliveries.yml new file mode 100644 index 0000000..28d9b85 --- /dev/null +++ b/test/fixtures/deliveries.yml @@ -0,0 +1,23 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + message: one + status: MyString + code: 1 + output: MyString + details: MyString + sent_with_ssl: false + log: one + timestamp: 9.99 + time: 9.99 + +two: + message: two + status: MyString + code: 1 + output: MyString + details: MyString + sent_with_ssl: false + log: two + timestamp: 9.99 + time: 9.99 diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/fixtures/messages.yml b/test/fixtures/messages.yml new file mode 100644 index 0000000..e1d0f19 --- /dev/null +++ b/test/fixtures/messages.yml @@ -0,0 +1,73 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + token: MyString + scope: MyString + rcpt_to: MyString + mail_from: MyString + subject: MyString + message: one + timestamp: 9.99 + route: one + domain: one + credential: one + status: MyString + held: false + size: MyString + last_delivery_attempt: 9.99 + raw_table: MyString + raw_body: one + raw_headers: one + inspected: false + spam: false + spam_score: 9.99 + threat: false + threat_details: MyString + bounce: false + bounce_for: one + tag: MyString + loaded: 9.99 + clicked: 9.99 + received_with_ssl: false + hold_expiry: 9.99 + tracked_links: 1 + tracked_images: 1 + parsed: 1 + endpoint: one + endpoint_type: MyString + +two: + token: MyString + scope: MyString + rcpt_to: MyString + mail_from: MyString + subject: MyString + message: two + timestamp: 9.99 + route: two + domain: two + credential: two + status: MyString + held: false + size: MyString + last_delivery_attempt: 9.99 + raw_table: MyString + raw_body: two + raw_headers: two + inspected: false + spam: false + spam_score: 9.99 + threat: false + threat_details: MyString + bounce: false + bounce_for: two + tag: MyString + loaded: 9.99 + clicked: 9.99 + received_with_ssl: false + hold_expiry: 9.99 + tracked_links: 1 + tracked_images: 1 + parsed: 1 + endpoint: two + endpoint_type: MyString diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/models/delivery_test.rb b/test/models/delivery_test.rb new file mode 100644 index 0000000..a2d12f1 --- /dev/null +++ b/test/models/delivery_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class DeliveryTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/models/message_test.rb b/test/models/message_test.rb new file mode 100644 index 0000000..0e0d35b --- /dev/null +++ b/test/models/message_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class MessageTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/system/.keep b/test/system/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/system/deliveries_test.rb b/test/system/deliveries_test.rb new file mode 100644 index 0000000..b7c82cb --- /dev/null +++ b/test/system/deliveries_test.rb @@ -0,0 +1,57 @@ +require "application_system_test_case" + +class DeliveriesTest < ApplicationSystemTestCase + setup do + @delivery = deliveries(:one) + end + + test "visiting the index" do + visit deliveries_url + assert_selector "h1", text: "Deliveries" + end + + test "should create delivery" do + visit deliveries_url + click_on "New delivery" + + fill_in "Code", with: @delivery.code + fill_in "Details", with: @delivery.details + fill_in "Log", with: @delivery.log_id + fill_in "Message", with: @delivery.message_id + fill_in "Output", with: @delivery.output + check "Sent with ssl" if @delivery.sent_with_ssl + fill_in "Status", with: @delivery.status + fill_in "Time", with: @delivery.time + fill_in "Timestamp", with: @delivery.timestamp + click_on "Create Delivery" + + assert_text "Delivery was successfully created" + click_on "Back" + end + + test "should update Delivery" do + visit delivery_url(@delivery) + click_on "Edit this delivery", match: :first + + fill_in "Code", with: @delivery.code + fill_in "Details", with: @delivery.details + fill_in "Log", with: @delivery.log_id + fill_in "Message", with: @delivery.message_id + fill_in "Output", with: @delivery.output + check "Sent with ssl" if @delivery.sent_with_ssl + fill_in "Status", with: @delivery.status + fill_in "Time", with: @delivery.time + fill_in "Timestamp", with: @delivery.timestamp + click_on "Update Delivery" + + assert_text "Delivery was successfully updated" + click_on "Back" + end + + test "should destroy Delivery" do + visit delivery_url(@delivery) + click_on "Destroy this delivery", match: :first + + assert_text "Delivery was successfully destroyed" + end +end diff --git a/test/system/messages_test.rb b/test/system/messages_test.rb new file mode 100644 index 0000000..216b292 --- /dev/null +++ b/test/system/messages_test.rb @@ -0,0 +1,107 @@ +require "application_system_test_case" + +class MessagesTest < ApplicationSystemTestCase + setup do + @message = messages(:one) + end + + test "visiting the index" do + visit messages_url + assert_selector "h1", text: "Messages" + end + + test "should create message" do + visit messages_url + click_on "New message" + + check "Bounce" if @message.bounce + fill_in "Bounce for", with: @message.bounce_for_id + fill_in "Clicked", with: @message.clicked + fill_in "Credential", with: @message.credential_id + fill_in "Domain", with: @message.domain_id + fill_in "Endpoint", with: @message.endpoint_id + fill_in "Endpoint type", with: @message.endpoint_type + check "Held" if @message.held + fill_in "Hold expiry", with: @message.hold_expiry + check "Inspected" if @message.inspected + fill_in "Last delivery attempt", with: @message.last_delivery_attempt + fill_in "Loaded", with: @message.loaded + fill_in "Mail from", with: @message.mail_from + fill_in "Message", with: @message.message_id + fill_in "Parsed", with: @message.parsed + fill_in "Raw body", with: @message.raw_body_id + fill_in "Raw headers", with: @message.raw_headers_id + fill_in "Raw table", with: @message.raw_table + fill_in "Rcpt to", with: @message.rcpt_to + check "Received with ssl" if @message.received_with_ssl + fill_in "Route", with: @message.route_id + fill_in "Scope", with: @message.scope + fill_in "Size", with: @message.size + check "Spam" if @message.spam + fill_in "Spam score", with: @message.spam_score + fill_in "Status", with: @message.status + fill_in "Subject", with: @message.subject + fill_in "Tag", with: @message.tag + check "Threat" if @message.threat + fill_in "Threat details", with: @message.threat_details + fill_in "Timestamp", with: @message.timestamp + fill_in "Token", with: @message.token + fill_in "Tracked images", with: @message.tracked_images + fill_in "Tracked links", with: @message.tracked_links + click_on "Create Message" + + assert_text "Message was successfully created" + click_on "Back" + end + + test "should update Message" do + visit message_url(@message) + click_on "Edit this message", match: :first + + check "Bounce" if @message.bounce + fill_in "Bounce for", with: @message.bounce_for_id + fill_in "Clicked", with: @message.clicked + fill_in "Credential", with: @message.credential_id + fill_in "Domain", with: @message.domain_id + fill_in "Endpoint", with: @message.endpoint_id + fill_in "Endpoint type", with: @message.endpoint_type + check "Held" if @message.held + fill_in "Hold expiry", with: @message.hold_expiry + check "Inspected" if @message.inspected + fill_in "Last delivery attempt", with: @message.last_delivery_attempt + fill_in "Loaded", with: @message.loaded + fill_in "Mail from", with: @message.mail_from + fill_in "Message", with: @message.message_id + fill_in "Parsed", with: @message.parsed + fill_in "Raw body", with: @message.raw_body_id + fill_in "Raw headers", with: @message.raw_headers_id + fill_in "Raw table", with: @message.raw_table + fill_in "Rcpt to", with: @message.rcpt_to + check "Received with ssl" if @message.received_with_ssl + fill_in "Route", with: @message.route_id + fill_in "Scope", with: @message.scope + fill_in "Size", with: @message.size + check "Spam" if @message.spam + fill_in "Spam score", with: @message.spam_score + fill_in "Status", with: @message.status + fill_in "Subject", with: @message.subject + fill_in "Tag", with: @message.tag + check "Threat" if @message.threat + fill_in "Threat details", with: @message.threat_details + fill_in "Timestamp", with: @message.timestamp + fill_in "Token", with: @message.token + fill_in "Tracked images", with: @message.tracked_images + fill_in "Tracked links", with: @message.tracked_links + click_on "Update Message" + + assert_text "Message was successfully updated" + click_on "Back" + end + + test "should destroy Message" do + visit message_url(@message) + click_on "Destroy this message", match: :first + + assert_text "Message was successfully destroyed" + end +end diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..d713e37 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,13 @@ +ENV["RAILS_ENV"] ||= "test" +require_relative "../config/environment" +require "rails/test_help" + +class ActiveSupport::TestCase + # Run tests in parallel with specified workers + parallelize(workers: :number_of_processors) + + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + + # Add more helper methods to be used by all tests here... +end diff --git a/tmp/.keep b/tmp/.keep new file mode 100644 index 0000000..e69de29 diff --git a/tmp/pids/.keep b/tmp/pids/.keep new file mode 100644 index 0000000..e69de29 diff --git a/tmp/storage/.keep b/tmp/storage/.keep new file mode 100644 index 0000000..e69de29 diff --git a/vendor/.keep b/vendor/.keep new file mode 100644 index 0000000..e69de29 diff --git a/vendor/javascript/.keep b/vendor/javascript/.keep new file mode 100644 index 0000000..e69de29