On Fri, Mar 29, 2013 at 5:48 PM, Scott Lawrence <
byt...@gmail.com> wrote:
> On Fri, 29 Mar 2013, Jim Robinson wrote:
>
>> Has anyone here written go programs that can talk to gmail,
>> e.g., through imap or smtp?
>>
>> With the upcoming forced migration to the 'new compose'
>> feature I'm looking at how I can still browse/search email
>> via the gmail web interface but compose emails using an
>> external editor.
>>
>> Right now I have a little go server that a chrome extension
>> named TextAid talks to, and I thought about seeing whether
>> or not I could rework it to talk directly to the gmail servers.
>>
>> It looks as though there are a few go imap libraries available,
>> does anyone have experience enough to recommend one?
>
>
> smtp is in the standard library:
http://golang.org/pkg/net/smtp/
>
> As usual, I'll plug my pop3 and mail parsing implementations:
>
>
https://github.com/bytbox/go-pop3
>
https://github.com/bytbox/go-mail