// Copyright (c) 2024 Proton AG // // This file is part of Proton Mail Bridge. // // Proton Mail Bridge is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Proton Mail Bridge is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Proton Mail Bridge. If not, see . package bridge import ( "context" "errors" "strings" "github.com/ProtonMail/proton-bridge/v3/internal/clientconfig" "github.com/ProtonMail/proton-bridge/v3/internal/constants" "github.com/ProtonMail/proton-bridge/v3/internal/logging" "github.com/ProtonMail/proton-bridge/v3/internal/safe" "github.com/ProtonMail/proton-bridge/v3/internal/useragent" "github.com/ProtonMail/proton-bridge/v3/internal/vault" "github.com/sirupsen/logrus" ) // ConfigureAppleMail configures Apple Mail for the given userID and address. // If configuring Apple Mail for Catalina or newer, it ensures Bridge is using SSL. func (bridge *Bridge) ConfigureAppleMail(ctx context.Context, userID, address string) error { logPkg.WithFields(logrus.Fields{ "userID": userID, "address": logging.Sensitive(address), }).Info("Configuring Apple Mail") return safe.RLockRet(func() error { user, ok := bridge.users[userID] if !ok { return ErrNoSuchUser } emails := user.Emails() displayNames := user.DisplayNames() if (len(emails) == 0) || (len(displayNames) == 0) { return errors.New("could not retrieve user address info") } if address == "" { address = emails[0] } var username, displayName, addresses string if user.GetAddressMode() == vault.CombinedMode { username = address displayName = displayNames[username] addresses = strings.Join(emails, ",") } else { username = address addresses = address displayName = displayNames[address] if len(displayName) == 0 { displayName = address } } if useragent.IsCatalinaOrNewer() && !bridge.vault.GetSMTPSSL() { if err := bridge.SetSMTPSSL(ctx, true); err != nil { return err } } return (&clientconfig.AppleMail{}).Configure( constants.Host, bridge.vault.GetIMAPPort(), bridge.vault.GetSMTPPort(), bridge.vault.GetIMAPSSL(), bridge.vault.GetSMTPSSL(), username, displayName, addresses, user.BridgePass(), ) }, bridge.usersLock) }