Andrew Stroz

Results 6 comments of Andrew Stroz

Just saw [this issue](https://github.com/gocolly/colly/issues/338) and I think its related because `http://httpbin.org/ip` works but `https://httpbin.org/ip` does not. The website I am looking to scrape uses `https`

Yea! I did end up getting it working, hopefully this still helps. ``` c := colly.NewCollector() c.WithTransport(s.HTTPTransport) ``` Where `s.HTTPTransport` is: ``` &http.Transport{ Proxy: rp, DialContext: (&net.Dialer{ Timeout: 30 *...

I am looking for PostGIS support as well!

[This function call](https://github.com/inbucket/inbucket/blob/a17fa256a2c3ae5256ae60c57c93fa3fde6080a4/pkg/server/pop3/handler.go#L207) loads the messages but only happens during at the end of the auth state but should happen when requesting anything regarding message data. A good place for...

Ah ok, I ended up implementing it this way. Have you considered adding support for IMAP?

Ended up switching to use the REST API which works for what I am using it for