Jonathan Allen
Jonathan Allen

Reputation: 70337

TFS 2008: How do I setup the Alert functionality?

The alerts that I setup for source code changes isn't being triggered. I suspect that the email server settings are wrong, but where would I configure them?

Upvotes: 0

Views: 841

Answers (2)

demp
demp

Reputation: 12823

you may need to change these two files:

C:\Program Files\Microsoft Visual Studio 2008 Team Foundation Server\Web Services\Services\Web.config

<appSettings>
...
<add key="smtpServer" value="mySmtpServer" />

C:\Program Files\Microsoft Visual Studio 2008 Team System Web Access\Web\web.config

 <webAccessSettings>
    ...
    <emailSettings sendingEmailEnabled="true" />
...
</webAccessSettings>
<system.net>
<mailSettings>
<smtp deliveryMethod="network" from="[email protected]">
<network host="mySmtpServer" port="25" defaultCredentials="true"  .... />
....

There's good blog post on the topic here

Upvotes: 0

Ryan
Ryan

Reputation: 4662

This looks like what you're looking for http://msdn.microsoft.com/en-US/library/ms400808.aspx

Upvotes: 1

Related Questions