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

发布于 2024-09-02 18:39:02 字数 54 浏览 4 评论 0原文

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

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冬天的雪花 2024-09-09 18:39:02

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

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。配置

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

有关于该主题的好博客文章 这里

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文