Getting "Participants Changed" email, but not initial emails

Discussion of open issues, suggestions and bugs regarding code review tool for Visual Studio – Review Assistant
Post Reply
mikeco3181
Posts: 1
Joined: Fri 25 Oct 2013 18:06

Getting "Participants Changed" email, but not initial emails

Post by mikeco3181 » Fri 25 Oct 2013 18:12

these are my settings

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<ServerSettings>
  <Url>http://localhost:85/ReviewAssistant</Url>
  <Database>C:\ProgramData\Devart\Review Assistant\reviewassistant.db</Database>
  <MailFromAddress>[email protected]</MailFromAddress>
  <MailServer>smtpout.server.net</MailServer>
  <MailPort>25</MailPort>
  <MailTimeout>200</MailTimeout>
  <MailEnableSSL>false</MailEnableSSL>
  <MailUsername>[email protected]</MailUsername>
  <MailPassword>password</MailPassword>
  <MailLoggingLevel>2</MailLoggingLevel>
</ServerSettings>
Looking in the Event Viewer on the server, I see two different events.

Error

Code: Select all

 <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
- <System>
  <Provider Name="Devart Review Assistant" /> 
  <EventID Qualifiers="0">0</EventID> 
  <Level>2</Level> 
  <Task>0</Task> 
  <Keywords>0x80000000000000</Keywords> 
  <TimeCreated SystemTime="2013-10-25T18:02:47.000000000Z" /> 
  <EventRecordID>19</EventRecordID> 
  <Channel>Devart Review Assistant</Channel> 
  <Computer>server.Local</Computer> 
  <Security /> 
  </System>
- <EventData>
  <Data>Review Assistant 2.0.130. Message cannot be sent to [email protected]. Error occurred in SendMail at 10/25/2013 2:02:47 PM: Message: The operation has timed out. Source: System TargetSite: Void Send(System.Net.Mail.MailMessage) HelpLink: Type: System.Net.Mail.SmtpException StatusCode: GeneralFailure HResult: -2146233088 Stack: at System.Net.Mail.SmtpClient.Send(MailMessage message) at #=qIljZ1KuvxjTzFTTFQ4qV0tpiYUrWIHD$akIGXBvDYw3RydRJ4nqYHBOCUjoyW79m.#=qN24jDODIzsnP4$oKivmiqA==(String #=qxuB5zJzJbCGz1Z0LP03R_w==, String #=qfq9PGGdgvb4Pn6CwqSGF4w==, String #=qDmjzauMuchE5JoXT_Gz0$Q==, String #=q58zF1n6h1uQY5qrAkvb1Pw==)</Data> 
  </EventData>
  </Event>
Success

Code: Select all

- <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
- <System>
  <Provider Name="Devart Review Assistant" /> 
  <EventID Qualifiers="0">0</EventID> 
  <Level>4</Level> 
  <Task>0</Task> 
  <Keywords>0x80000000000000</Keywords> 
  <TimeCreated SystemTime="2013-10-25T17:59:41.000000000Z" /> 
  <EventRecordID>15</EventRecordID> 
  <Channel>Devart Review Assistant</Channel> 
  <Computer>server.Local</Computer> 
  <Security /> 
  </System>
- <EventData>
  <Data>Message has been successfully sent to [email protected]. The subject of message: Participants Changed - [Removed a lot of unused code in MainWindow.xaml.cs] - [App Review]</Data> 
  </EventData>
  </Event>
Anyone have an idea on what's going on here?

AlexeyN
Devart Team
Posts: 244
Joined: Wed 12 Sep 2012 12:09

Re: Getting "Participants Changed" email, but not initial emails

Post by AlexeyN » Mon 28 Oct 2013 12:29

If we are not sure, that a letter was successfully delivered (e.g. The operation has timed out), we prevent the mail from future sending. We did that as a reaction to this user's issue:
http://forums.devart.com/viewtopic.php?f=49&t=28091

Try to increase MailTimeout (e.g. to 5 seconds). We have just noticed, that now MailTimeout is in milliseconds, we will change its dimension to seconds in the next release.

Post Reply