• R/O
  • SSH
  • HTTPS

ewatch: Commit


Commit MetaInfo

Revision126 (tree)
Time2023-08-01 20:39:52
Authorbananajinn

Log Message

パスワードを平文で書かなくていいようにしたいの修正

Change Summary

Incremental Difference

--- trunk/EWatch/EWatch/Actions/ActionSmtp.cs (revision 125)
+++ trunk/EWatch/EWatch/Actions/ActionSmtp.cs (revision 126)
@@ -117,7 +117,7 @@
117117 var pw = DecryptPassword(Password);
118118 using (var sender = new EMailSender(_serverHost, _serverPort,
119119 Protection, AuthMethod,
120- UserID, Password, null)) {
120+ UserID, pw, null)) {
121121 sender.Send(subject, body,
122122 new MailAddress(FromAddress),
123123 ToAddress.Split(',').Select(x => new MailAddress(x)).ToArray(),
--- trunk/EWatch/pack.bat (revision 125)
+++ trunk/EWatch/pack.bat (revision 126)
@@ -16,5 +16,7 @@
1616 ren EWatch.config.json EWatch.config.json.example
1717 ren log4net.config.xml log4net.config.xml.example
1818 popd
19-
19+pushd %WORKDIR%
20+tar -a -c -f EWatch-2.0.x.zip EWatch
21+popd
2022 pause
\ No newline at end of file
Show on old repository browser