使用 NLog 时保护电子邮件密码
当使用 NLog 作为日志工具时,我们可以轻松地通过电子邮件发送消息,例如,这是使用 Gmail 作为 smtp 服务器的示例配置:
<targets>
<target name="gmail" type="Mail"
smtpServer="smtp.gmail.com"
smtpPort="587"
smtpAuthentication="Basic"
smtpUsername="[email protected]"
smtpPassword="password"
enableSsl="true"
from="[email protected]"
to="[email protected]"
cc="[email protected];[email protected];[email protected]"
/>
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="gmail" />
</rules>
它就像一个魅力。 但在上面的示例中,密码以纯文本形式放入配置文件中。
有办法以某种方式保护它吗?
When using NLog as a logging instrument we can easily send messages via email, for example this is the example configuration for using Gmail as a smtp server:
<targets>
<target name="gmail" type="Mail"
smtpServer="smtp.gmail.com"
smtpPort="587"
smtpAuthentication="Basic"
smtpUsername="[email protected]"
smtpPassword="password"
enableSsl="true"
from="[email protected]"
to="[email protected]"
cc="[email protected];[email protected];[email protected]"
/>
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="gmail" />
</rules>
It works like a charm.
But in the above example the password is put in plain text in a configuration file.
Is there a way to protect it somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以将 NLog.config(如果此文件中有)移至您的 app.config,然后加密您的 app.config。
您可以查看如何加密 app.config 此处。
Yes, you can move the NLog.config (If you have it in this file) to your app.config and then encrypt you app.config.
You can see how to encrypt the app.config here.
您可以在代码中配置记录器。在那里,您甚至可以向任何拥有十六进制编辑器的人隐藏您的密码!另外,没有人有机会弄乱您的配置文件。
要使用它,请将其放在您要发送电子邮件的子目录中:
You could configure the logger inside code. There, you can even hide your password from anyone with a hex-editor! Plus, nobody gets any chance to mess with your config file.
To use it, put this in the sub where you want to send email: