web-dev-qa-db-ja.com

Neomutt Multiアカウント

私はしばらくmuttを使用しており、2つのGmailアカウントでかなりうまく動作しました。 1つのマクロから別のマクロに切り替えるように設定された2つのマクロがあります。

neomuttに移動したいので、正確な設定はもう機能していません。

個別にアカウントにアクセスできますが、一方から他方に切り替えることはできません。

neomuttrc:

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"

また、マクロのみを設定しようとしています。これにより、ロードするアカウントを選択できます。しかし、1つをロードしたら、もう1つはロードできません。

ご協力いただきありがとうございます。

1
NoLoop

トリックは

set folder = "imaps://[email protected]"

メールボックス用に同じフォルダを使用すると、neomuttが混乱しました。

2
NoLoop