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