1
0
Fork 0

Adding upstream version 0.8.9.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-22 10:16:14 +02:00
parent 3b2c48b5e4
commit c0c4addb85
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
285 changed files with 25880 additions and 0 deletions

View file

@ -0,0 +1,25 @@
package smtp
import (
"net/smtp"
)
type oauth2Auth struct {
username, accessToken string
}
// OAuth2Auth returns an Auth that implements the SASL XOAUTH2 authentication
// as per https://developers.google.com/gmail/imap/xoauth2-protocol
func OAuth2Auth(username, accessToken string) smtp.Auth {
return &oauth2Auth{username, accessToken}
}
func (a *oauth2Auth) Start(_ *smtp.ServerInfo) (string, []byte, error) {
resp := []byte("user=" + a.username + "\x01auth=Bearer " + a.accessToken + "\x01\x01")
return "XOAUTH2", resp, nil
}
func (a *oauth2Auth) Next(_ []byte, _ bool) ([]byte, error) {
return nil, nil
}