나는 한동안 mutt를 사용해왔고 2개의 Gmail 계정에서 꽤 잘 작동하도록 했습니다. 한 매크로에서 다른 매크로로 전환하도록 설정된 2개의 매크로가 있습니다.
네오머트로 이동하려고 하면 정확한 구성이 더 이상 작동하지 않습니다.
내 계정에 개별적으로 접근할 수 있지만 한 계정에서 다른 계정으로 전환할 수는 없습니다.
네오머트르크:
source ~/.config/neomutt/accounts/account1
folder-hook 'account1' 'source ~/.config/neomutt/accounts/account1'
source ~/.config/neomutt/accounts/account2
folder-hook 'account2' 'source ~/.config/neomutt/accounts/account2'
macro index,pager <f2> '<sync-mailbox><enter-command>source ~/.config/neomutt/accounts/account1<enter><change-folder>!<enter>'
macro index,pager <f3> '<sync-mailbox><enter-command>source ~/.config/neomutt/accounts/account2<enter><change-folder>!<enter>'
계정1:
set from = "NAME"
set folder = "imaps://imap.gmail.com"
# Imap
set imap_user = "[email protected]"
set imap_authenticators = "oauthbearer"
set imap_oauth_refresh_command = " ... "
set imap_check_subscribed
set spoolfile = "+INBOX"
set postponed = "+[Gmail]/Draft"
set header_cache=~/.mutt/cache/headers
set message_cachedir = "~/.mutt/cache/bodies"
# Mailbox definition
mailboxes +GMail/INBOX +GMail/MailingList
# smtp
set smtp_authenticators = "oauthbearer"
set smtp_oauth_refresh_command = "...."
set smtp_url = "smtp://[email protected]@smtp.gmail.com:587/"
set realname = "NAME"
또한 로드할 계정을 선택할 수 있는 매크로만 설정하려고 합니다. 하지만 하나를 로드하면 다른 하나를 로드할 수 없습니다.
당신의 도움을 주셔서 감사합니다.