> >I already looked at the readme.txt file and I
> >followed the instructions specified in it to setup
> >IMGate.
> >Can you tell me please what you mean by "change
> >regexp"?
>
> where you have pcre: in main.cf, change back to regexp:
Your other choices is to recompile with PCRE support. That is not too
hard if you are on FreeBSD.
The Postfix author uses FreeBSD as his primary development platform, so
most of his examples apply for a compile on FreeBSD.
>From the same place you did the first compile:
Clean up anything from the old compile.
make tidy
Set up for PCRE support.
make -f Makefile.init makefiles \
"CCARGS=-DHAS_PCRE -I/usr/local/include" \
"AUXLIBS=-L/usr/local/lib -lpcre"
Compile.
make
If there are no errors, then it will have compiled in PCRE at this point.
You can then do an upgrade version of the install to put it in.
make upgrade
--Eric