namespace inbox {
# For \Sent mailboxes there are two widely used names. We'll mark both of
# them as \Sent. User typically deletes one of them if duplicates are created.
mailbox Sent {
special_use = \Sent
}
}
smtpd_client_restrictions = permin_mynetworks,
...
local_name imap.example.org {
ssl_cert = /ssl/certs/imap.example.org.crt
ssl_key = /ssl/private/imap.example.org.key
}
local_name imap.example2.org {
ssl_cert = /ssl/certs/imap.example2.org.crt
ssl_key = /ssl/private/imap.example2.org.key
}
# ..etc..
if header :contains "Subject" "SPAM"
{
fileinto "Junk";
stop;
}