Matthias Schneider

Results 24 comments of Matthias Schneider

when i remove the `-i` in https://github.com/joefitzgerald/go-plus/blob/master/lib/build/builder.js#L204 it works well! The `-i` should be configurable, i dont need to install each time. `go install -i` fails with the same reason,...

I was able to fix the issue with go-i18n by adding the following to my go.mod: ``` require ( github.com/nicksnyder/go-i18n v1.10.1 // indirect ) ```

this could be solved by writing the dmarc events as a opendmarc history file and then using the opendmarc tools to dbimport / aggregate / send mails. https://github.com/mschneider82/go-opendmarc-historyfile

In my case the Application logs are postfix and dovecot. Mostly accound bruteforce Attacks.

using the new http.NewRequestWithContext required go 1.13 but switching to context timeouts is better since the transport timeout was missing in previous function

Hi, i got the same errors, try downgrading celluloid to 0.16.0, this will work fine.

Hi Stuart- i already wrote a simple logstash nsq plugin, feel free to fork and enhance, unfortunately the processing speed with nsq-ruby was nearly 10x better than krakow with the...

@frederikbosch if you use TCP, you can already handle smtp to a mta, this issue is about implementing smtp protocol on top of tcp, so traefik acts as an smtpd...

I think the `type` entryPoint would be the correct way. To implement SMTP i think this would be the correct way: Traefik should act as a SMTP Server and simulate...