Markus Mahlberg
Markus Mahlberg
Might also be related to #336
The according regex https://github.com/asaskevich/govalidator/blob/475eaeb164960a651e97470412a7d3b0c5036105/patterns.go#L7 seems pretty convoluted to me. The tests pass with a simplified form of: ^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$
I have developed a simplified form which also captures unicode characters and prevents any connector or control character at the beginning of the email address: https://regex101.com/r/KokhYv/3 The result can be...
@Coderrob Well, one could check the A & MX records for a given domain part...
As far as I understood it, `q.In` is for comparing wether a single value field (not a slice) matches one of the given values in the slice.
Maybe I am a bit confused, but could you describe a scenario? If something is wrong, a non-2xx response code should be issued, anyway. So if the dependency responds with...
It would make sense to create a two stage build base image and simply use that.
I find Ubuntu examples rather limited. Would there be willingness to accept PRs for Alpine and the RH family? Maybe even proper base images?
I find this interesting, but there should be tests to ensure future versions of sprig do not break compatibility.
@vlcinsky I think this is a use case problem. The way I see it, `dockerize` is there to start one single process when conditions are met and provides configuration based...