Configure Review Assistant with Exchange Email Server

Discussion of open issues, suggestions and bugs regarding code review tool for Visual Studio – Review Assistant
Post Reply
brianswart
Posts: 1
Joined: Tue 26 Apr 2016 19:05

Configure Review Assistant with Exchange Email Server

Post by brianswart » Tue 26 Apr 2016 19:17

Is it possible to configure review assistant to send emails from an exchange server? I added the configuration below, which usually works for say sql server emails, and I am not seeing any emails being sent. I also don't see any entries in the event log showing that the emails have been sent or failed, despite
setting the mail logging level to 2. I did restart the windows service after making any changes. Am I missing something?

Here is my file:

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<ServerSettings>
  <Url>https://localhost:443/ReviewAssistant</Url>
  <Database>C:\ProgramData\Devart\Review Assistant\reviewassistant.db</Database>
  <MailFromAddress>[email protected]</MailFromAddress>
  <MailServer>mail.domain.com</MailServer>
  <MailPort>25</MailPort>
  <MailTimeout>100</MailTimeout>
  <MailEnableSSL>true</MailEnableSSL>
  <MailValidateSSLCertificate>true</MailValidateSSLCertificate>
  <MailUsername>domain\username</MailUsername>
  <MailPassword>domain password</MailPassword>
  <MailLoggingLevel>2</MailLoggingLevel>
  <LicenseKey>
    
  </LicenseKey>
</ServerSettings>

Artem
Devart Team
Posts: 137
Joined: Mon 21 Jun 2010 14:02

Re: Configure Review Assistant with Exchange Email Server

Post by Artem » Wed 27 Apr 2016 09:05

Make sure that review participants configure email notification settings.

Note, that you do not receive notifications on your own changes.

Post Reply