Jnessto wrote:
> Greetings list:
>
> Hmm, does Maia 1.0.1 handle tnef better? In 1.0.0
pretty much every
> email with tnef is flagged as a banned file and it's
starting to
> irritate a few of my users.
The banned file list is something you can configure in your
amavisd.conf
file. See the $banned_filename_re setting in particular,
and edit it to
remove the patterns you don't want banned (or add new
patterns you'd
like to ban).
For instance, if you have:
$banned_filename_re = new_RE(
qr'^\.(exe|lha|tnef|cab|dll)$',
);
just remove the "tnef" item from the list, e.g.
$banned_filename_re = new_RE(
qr'^\.(exe|lha|cab|dll)$',
);
Restart amavisd-maia and TNEF files will no longer be
blocked.
--
Robert LeBlanc <rjl renaissoft.com>
Renaissoft, Inc.
Maia Mailguard <http://www.maiamail
guard.com/>
_______________________________________________
Maia-users mailing list
Maia-users renaissoft.com
http://www.renaissoft.com/mailman/listinfo/maia-users
|