+ o Added --enable-recieve-strip configure option (Ansgar Burchardt)
o Added unicode support to listtexts
o Fixed build outside the source directory (Ansgar Burchardt)
o Moved English listtexts and install all languages (Ansgar Burchardt)
$ ./configure && make && make install
+ If you want to filter multipart/mime messages, pass the option
+ --enable-recieve-strip to configure, and take a look at
+ contrib/recievestrip/README.
+
1) Configure a recipient delimiter. The default is to use '+', and in
Postfix it's done by adding
AC_SUBST(textlibdir)
+AC_ARG_ENABLE([recieve-strip],
+ AS_HELP_STRING([--enable-recieve-strip],
+ [build mlmmj-recieve-strip (default is no)]))
+AM_CONDITIONAL(WANT_RECIEVESTRIP, test x"$enable_recieve_strip" = xyes)
+
# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([ftruncate memset socket strerror strncasecmp snprintf fcntl])
AM_CFLAGS = -g -Wall -pedantic -Wsign-compare -DDEFAULTTEXTDIR='"@textlibdir@"'
INCLUDES = -I$(srcdir)/../../include
-noinst_PROGRAMS = mlmmj-recieve-strip
+if WANT_RECIEVESTRIP
+ bin_PROGRAMS = mlmmj-recieve-strip
+endif
mlmmj_recieve_strip_SOURCES = mlmmj-recieve-strip.c ../../src/mygetline.c ../../src/memory.c ../../src/readn.c \
../../src/strgen.c ../../src/random-int.c ../../src/log_error.c ../../src/print-version.c \
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
+WANT_RECIEVESTRIP_FALSE = @WANT_RECIEVESTRIP_FALSE@
+WANT_RECIEVESTRIP_TRUE = @WANT_RECIEVESTRIP_TRUE@
ac_ct_CC = @ac_ct_CC@
ac_ct_STRIP = @ac_ct_STRIP@
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@