Solved Question about Spamassassin Teaching functionality

wtptrs

Verified User
Joined
Jul 13, 2015
Messages
325
I'm trying to implement Spamassassin learning using the following guide:


Since it's difficult to test if this is working correctly (because it can take a while for Spamassassin to learn and implement the new knowledge), I was wondering if anyone who's implemented this succesfully already could tell me the exact location of the Spam folder which will be used for learning. In a default email account, there's already the following:

Code:
drwxrwx---  5 username mail 4096 Oct  5 15:39 .INBOX.spam
drwxrwx---  5 username mail 4096 Oct  5 15:39 .Junk

I assume .INBOX.spam will be used? Or, since the tutorial mentions the following:

Code:
Now create the /Spam mailbox folder and populate it with some spam messages.

should a separate folder SPAM (on the same level as the inbox folder) be created?

Thanks for your help!
 
Hello,

The file /etc/dovecot/conf/namespace_private.conf states:

Code:
namespace inbox {
...
...
...
    mailbox Spam {
        special_use = \Junk
        auto = no
    }

so it's INBOX.Spam
 
Hello,

The file /etc/dovecot/conf/namespace_private.conf states:

Code:
namespace inbox {
...
...
...
    mailbox Spam {
        special_use = \Junk
        auto = no
    }

so it's INBOX.Spam
Ok great, thanks for the quick response Alex!
 
Back
Top