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.
Revision of Autocreate folders from Tue, 02/14/2012 - 16:05
Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.
Dovecot has an Autocreate pluging that can automatically create and subscribe folders when a user logs in.
Installation
Dovecot 2.0.x includes the autocreate plugin by default. To enable it, edit /usr/local/etc/dovecot/conf.d/20-imap.conf
and add it to the mail_plugins
list:
protocol imap {
mail_plugins = $mail_plugins autocreate
}
To create folders, add them into /usr/local/etc/dovecot/conf.d/90-plugin.conf
:
plugin {
autocreate = Trash
autocreate2 = Spam
#autocreate3 = ..etc..
autosubscribe = Trash
autosubscribe2 = Spam
#autosubscribe3 = ..etc..
}
- Log in to post comments