ネオマートマルチアカウント

ネオマートマルチアカウント

私はしばらくの間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"

また、ロードするアカウントを選択できるマクロのみを設定してみました。ただし、1つを読み込むともう1つを読み込むことはできません。

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

ベストアンサー1

秘訣は

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

同じフォルダを持つメールボックスはneomuttを混乱させます。

おすすめ記事