Where do you set up email settings in teamcity

teamcity

I am VERY new with teamcity so please bear with me

I set up an email notifier to let me know when a build has failed, but TeamCity is reporting the following error:

Failed to send email notification via
SMTP server mail, due to error:
Unknown SMTP host: mail; nested
exception is:
java.net.UnknownHostException: mail

For the life of me, I cannot find where to configure the mail server settings. I don't even want it to use an SMTP server, but I don't see any options for this anywhere.

Best Answer

Option                 Description 
------                 ----------
SMTP host              Specify the SMTP host name.
SMTP port              Specify the SMTP port number.
Send messages from     Specify the email address, from which notification messages will be sent to the user.
SMTP login             Specify the SMTP login name, if any.
SMTP password          Specify the SMTP password.
Use TLS (SSL)          Select this option to secure your SMTP connection with TLS.
                       (This feature is only available in TeamCity 3.1+)
Test connection        Click this button to establish a connection with the specified SMTP host.
Save                   Click this button to save changes and close the page.

source: http://www.jetbrains.net/confluence/display/TCD3/Email+and+Jabber+Notifier+Settings

Related Topic