Andrew Whitten's .NET Blog
Team Foundation Server and Process
RSS 2.0
Atom 0.3
Contact
Home
Sep
October 2008
Nov
S
M
T
W
T
F
S
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
Search
Go
Archives
August 2007 (6)
July 2007 (4)
June 2007 (1)
May 2007 (1)
February 2007 (1)
January 2007 (1)
October 2006 (2)
August 2006 (1)
June 2006 (4)
May 2006 (4)
April 2006 (1)
February 2006 (2)
January 2006 (1)
December 2005 (3)
November 2005 (1)
October 2005 (1)
September 2005 (3)
July 2005 (1)
June 2005 (2)
May 2005 (2)
April 2005 (3)
February 2005 (1)
January 2005 (1)
December 2004 (2)
November 2004 (2)
October 2004 (3)
September 2004 (1)
July 2004 (3)
June 2004 (5)
May 2004 (1)
April 2004 (3)
March 2004 (7)
Navigation
Blogs
Login
Favorite Sites - General Interest
Other Blogs
Old New Thing
Windows Mobile Team
Windows CE Networking Team
Visual Studio for Devices Team
Technical
The Server Side
Wednesday, August 01, 2007 - Posts
Adding an SMTP alerts server to TFS
I didn't have the information about the email server before setting up TFS, but figured it would be easy to set up afterwards.... wrong :)
Well, actually it *is* easy, but just isn't straightforward to find.
Find your TFS service web.config file.. on my machine it is here:
C:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Web Services\Services\web.config
and add/adjust the following xml tags:
<appSettings>
<add key="ConnectionString" value="Application Name=TeamFoundation;Persist Security Info=False;Initial Catalog=TfsIntegration;Data Source=xxxxx;Integrated Security=SSPI"/>
<add key="eventingEnabled" value="true" />
<add key="DetailedExceptions" value="false" />
<add key="emailNotificationFromAddress" value="andrew@xxxxxxxxxxxxx.com" />
<add key="smtpServer" value="smtp.mailserver.xxxxxxxxxxxxx.com" />
<add key="SmtpUserName" value="MyDomain\MyUser" />
<add key="SmtpPassword" value="MySecurePassword" />
</appSettings>
posted
Wednesday, August 01, 2007 2:55 AM
by
andrewwhitten