TFS 2008:如何设置警报功能?

时间:2010-05-25 22:34:48

标签: tfs tfs2008 tfs-alerts

我没有触发为源代码更改设置的警报。我怀疑电子邮件服务器设置有误,但我在哪里配置它们?

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

您可能需要更改这两个文件:

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="fromaddress@domain.com">
<network host="mySmtpServer" port="25" defaultCredentials="true"  .... />
....

有关here

主题的好文章