SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
Autocreate folders
Primary tabs
Credits
Various bits of code, scripts, and procedures were put together with information from John Simpson's qmail.jms1.net website. It's an excellent resource on managing and setting up a Qmail server.
Dovecot has an Autocreate pluging that can automatically create and subscribe folders when a user logs in.
Installation
Dovecot since version 2.1.x can create/subscribe mailboxes automatically, which is useful for creating special folders for users. It can also assign SPECIAL-USE tags. A good use for those is for "combining" the different special folders that various mail clients use, i.e. "Sent" (Roundcube, Thunderbird), "Sent Messages" (OS X, iOS), or "Sent Items" (Outlook).
To autocreate some folders for dspam retraining:
mailbox Spam {
auto = subscribe
}
mailbox Spam.MissedSpam {
auto = subscribe
}
mailbox Spam.NotSpam {
auto = subscribe
}
To create mark "Deleted Messages" as a Trash folder for iOS/OSX, edit /usr/local/etc/dovecot/conf.d/15-mailboxes.conf
:
mailbox "Deleted Messages" {
special_use = \Trash
}
- Log in to post comments