Pascal Dreissen wrote:
I tried to use the smtp-forward plugin, this seems to work on plain
messages, however when trying to send an attachment:
@40000000431d95d012d4d6c4 29525 XX: Insecure dependency in require while
running with -T switch at /usr/lib/perl5/5.8.0/utf8_heavy.pl line 156,
Ah ha! This is the magic piece. On your old machine, you are not using UTF and
on your new machine you are (probably unintentionally). Pulling in Unicode
support adds a host of other modules transparently to your code, and some of
which have tainting problems.
Depending on your distro, there may be several different ways to change which
character set is used. Choose one that doesn't include Unicode characters (for
example, I use en_US). You can see what language setting is in force by typing:
$ echo $LANG
from any command line.
HTH
John