<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<blockquote type="cite"
cite="mid:CAOmHMuE8+fb8-JkgJpc_k0D+Vbofvi9TB0sc_GMLpi8F3BTFqw@mail.gmail.com">
<pre wrap="" class="moz-quote-pre">But how do I make amavis use it?
</pre>
</blockquote>
In your config you should have an array of decoders, e.g.<br>
<p><font face="monospace">```<br>
@decoders = (
<br>
['mail', \&do_mime_decode],
<br>
# [[qw(asc uue hqx ync)], \&do_ascii], # not safe
<br>
['F', \&do_uncompress, ['unfreeze', 'freeze -d', 'melt',
'fcat'] ],<br>
['doc', \&do_ole, 'ripole'], <br>
)<br>
```<br>
<span style="color:#000000;background-color:#ffffff;">
</span><br>
</font>so if my perl days aren't failing me, you simply need to
replace the `ripole` with `antiword` in that last line there.<br>
</p>
</body>
</html>