dovecot-sieve: initial commit

This commit is contained in:
Lucas Hazel 2009-01-29 19:08:17 +11:00
parent fc9fe5d4c6
commit bfbe87f1c6
4 changed files with 47 additions and 0 deletions

8
dovecot-sieve/.footprint Normal file
View File

@ -0,0 +1,8 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/dovecot/
drwxr-xr-x root/root usr/lib/dovecot/modules/
drwxr-xr-x root/root usr/lib/dovecot/modules/lda/
-rw-r--r-- root/root usr/lib/dovecot/modules/lda/lib90_cmusieve_plugin.a
-rwxr-xr-x root/root usr/lib/dovecot/modules/lda/lib90_cmusieve_plugin.la
-rwxr-xr-x root/root usr/lib/dovecot/modules/lda/lib90_cmusieve_plugin.so

1
dovecot-sieve/.md5sum Normal file
View File

@ -0,0 +1 @@
7acf3d98974a515b868addbdb73054eb dovecot-sieve-1.1.6.tar.gz

18
dovecot-sieve/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: Mail filter for the dovecot LDA
# URL: http://wiki.dovecot.org/LDA/Sieve
# Maintainer: Lucas Hazel, lucas at die dot net dot au
# Depends on: dovecot
name=dovecot-sieve
version=1.1.6
release=1
source=(http://www.dovecot.org/releases/sieve/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--libexecdir=/usr/lib \
--with-dovecot=/usr/lib/dovecot
make
make DESTDIR=$PKG install
}

20
dovecot-sieve/README Normal file
View File

@ -0,0 +1,20 @@
POST-INSTALL:
* Configure your MTA to use dovecot as your LDA
* Add cmusieve to the mail_plugins in dovecot.conf
protocol lda {
...
mail_plugins = cmusieve # ... other plugins
...
}
* The default location of the sieve file is .dovecot.sieve in the
users mail directory. You can change this in the plugin section.
plugin {
...
sieve = /var/sieve-scripts/%u/sieve
...
}