| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package common
- import (
- "errors"
- "net/smtp"
- "strings"
- )
- type outlookAuth struct {
- username, password string
- }
- func LoginAuth(username, password string) smtp.Auth {
- return &outlookAuth{username, password}
- }
- func (a *outlookAuth) Start(_ *smtp.ServerInfo) (string, []byte, error) {
- return "LOGIN", []byte{}, nil
- }
- func (a *outlookAuth) Next(fromServer []byte, more bool) ([]byte, error) {
- if more {
- switch string(fromServer) {
- case "Username:":
- return []byte(a.username), nil
- case "Password:":
- return []byte(a.password), nil
- default:
- return nil, errors.New("unknown fromServer")
- }
- }
- return nil, nil
- }
- func isOutlookServer(server string) bool {
- // 兼容多地区的outlook邮箱和ofb邮箱
- // 其实应该加一个Option来区分是否用LOGIN的方式登录
- // 先临时兼容一下
- return strings.Contains(server, "outlook") || strings.Contains(server, "onmicrosoft")
- }
|