diff options
author | R Chowdhury <necaris@gmail.com> | 2020-05-26 07:29:58 -0400 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-08-13 07:44:43 +0200 |
commit | f4dc7e1f746582d42462ec56347dd354756203b0 (patch) | |
tree | d4535b0aeecd9d323f12fcf1e3040babdbc79da1 /lib/oauthbearer.go | |
parent | f1a0fd20d6d30fb1203ffa3cb9f4004476acfdb3 (diff) | |
download | aerc-f4dc7e1f746582d42462ec56347dd354756203b0.tar.gz |
Add `oauthbearer` support for SMTP
This piggybacks on the existing IMAP support, and uses the same configuration format (my local testing example has the IMAP and SMTP lines almost copy-pasted from one another). It's a little clumsy in that a new token is negotiated for every `Send()` command, but it's a start...
Diffstat (limited to 'lib/oauthbearer.go')
-rw-r--r-- | lib/oauthbearer.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/oauthbearer.go b/lib/oauthbearer.go index 5bcba60..1030696 100644 --- a/lib/oauthbearer.go +++ b/lib/oauthbearer.go @@ -13,7 +13,7 @@ type OAuthBearer struct { Enabled bool } -func (c *OAuthBearer) exchangeRefreshToken(refreshToken string) (*oauth2.Token, error) { +func (c *OAuthBearer) ExchangeRefreshToken(refreshToken string) (*oauth2.Token, error) { token := new(oauth2.Token) token.RefreshToken = refreshToken token.TokenType = "Bearer" @@ -26,7 +26,7 @@ func (c *OAuthBearer) Authenticate(username string, password string, client *cli } if c.OAuth2.Endpoint.TokenURL != "" { - token, err := c.exchangeRefreshToken(password) + token, err := c.ExchangeRefreshToken(password) if err != nil { return err } |