How safe is it to write the password in the web.config of an asp.net-project like this way:
<mailSettings>
<smtp from="example@web.com">
<network host="smtp.web.com"
port="123"
userName="username@web.com"
password="12345"
enableSsl="true"/>
</smtp>
</mailSettings>
I'm not too familiar with internet security, so if this is not safe, are there any alternatives?