1
0
mirror of https://github.com/evilsocket/shieldwall.git synced 2021-09-07 00:28:37 +03:00

misc: small fix or general refactoring i did not bother commenting

This commit is contained in:
Simone Margaritelli
2021-02-11 20:05:20 +01:00
parent 1cac5702f5
commit 28d3f9f27a
2 changed files with 5 additions and 4 deletions

View File

@@ -49,7 +49,8 @@ To run it manually:
### TODO
* Upload rules json to bucket?
* Precompile agent and make installation process easier.
* deb, rpm, etc for the agent?
* Agent self update?
* deb, rpm, etc for the agent
* Agent config file download / curl https://shieldwall.me/anget-install-12345 | sh ?
* Upload rules json to bucket?

View File

@@ -23,7 +23,7 @@ func (m *Mailer) Send(from, to, subject, body string) error {
m.Lock()
defer m.Unlock()
log.Debug("sending email to %s via %s:%d ...", to, m.conf.Address, m.conf.Port)
log.Debug("sending email to %s via %s:%d, from=%s ...", to, m.conf.Address, m.conf.Port, from)
msg := gomail.NewMessage()