if there is special-use junk flag on mailbox, don't also look at AutomaticJunkFlags option

the special-use flag should take precedence.
This commit is contained in:
Mechiel Lukkien 2023-09-22 10:51:42 +02:00
parent 6315d57166
commit 89c543f662
No known key found for this signature in database

View file

@ -615,6 +615,7 @@ func (m *Message) JunkFlagsForMailbox(mb Mailbox, conf config.Account) {
if mb.Junk {
m.Junk = true
m.Notjunk = false
return
}
if !conf.AutomaticJunkFlags.Enabled {