Spam folder location

flips

Verified User
Joined
Jan 21, 2020
Messages
5
Is there a specific reason that the default spam folder (the one DA used if set to move spam to junk folder) is
INBOX.spam

Seems a bit weird, as all the other folders are not using INBOX prefix, why is this one?
(Just curious)

image1.png
 
You might try and change DirectAdmin settings to:

Code:
spam_inbox_prefix=0
spam_inbox_prefix_name=Junk

and rebuild dovecot with webmails.
 
Sorry for reviving an old post,
has anyone figured out an answer to this?
i'm banging my head against the wall trying to get rspamd to send junk mail to:
INBOX.Spam
rather than:
INBOX.spam

it's driving me bananas..
Sorry!
Thank You All!

EDIT: @zEitEr's suggestion worked like a charm!
i feel like an idiot for posting this now..

anyway, i did this:
da config-set spam_inbox_prefix_name Spam
then i rebuilt the following, just to be sure:
da build dovecot
da build easy_spam_fighter
da build rspamd
da build exim_conf

and it worked like a charm!
Thank You @zEitEr !!

PS here's my namespace_private.conf file, which shows that the 'subscribe' \Junk box is Spam and not spam:
namespace inbox {
type = private
separator = .
prefix = INBOX.
inbox = yes

mailbox Drafts {
special_use = \Drafts
auto = subscribe
}

mailbox Spam {
special_use = \Junk
auto = subscribe
}

mailbox Junk {
special_use = \Junk
auto = no
}

mailbox spam {
special_use = \Junk
auto = no
}

mailbox Trash {
special_use = \Trash
auto = subscribe
}

mailbox Sent {
special_use = \Sent
auto = subscribe
}

mailbox "Sent Messages" {
special_use = \Sent
auto = no
}

mailbox "Sent Items" {
special_use = \Sent
auto = no
}

mailbox Archive {
special_use = \Archive
auto = create
}

mailbox "Archives" {
special_use = \Archive
auto = no
}
}
 
Last edited:
Back
Top