公開日 2018年03月29日
更新日 2021年02月26日
Joruri Mailにログインすると、以下のエラーが表示される。
エラーが発生しました。
Invalid mailbox name.<Net::IMAP::NoResponseError>
JoruriMailが参照するmailbox名とメールサーバーのmailbox名が一致していない可能性があります。
以下の手順でマッピング設定を行ってください。
1.サービスを停止
# systemctl stop httpd
# bundle exec rake delayed_job:stop RAILS_ENV=production
2.マッピング設定を追加
# cd /var/share/jorurimail
# vi config/imap.yml
------
production:
address: 192.168.0.4
port: 143
usessl: false
mailbox_map:
Archive: INBOX.Archives
Drafts: INBOX.Draft
Junk: INBOX.Junk
Sent: INBOX.Sent
Trash: INBOX.Trash
All: virtual.All
Flagged: virtual.Flagged
------
3.サービスを再起動
# systemctl start httpd
# bundle exec rake delayed_job:start RAILS_ENV=production