I need a solution
Hello
Our email policy requires us to quarantine mails that contain active content like javascript. An disarm feature would greatly improve handling of these mails. Example:
<html>
...
<body>
<script type="text/javascript"> ... </script>
</body>
</html>
After the disarm the HTML body should look like this:
<html>
...
<body>
<!-- Script Contents Disarmed by SMG -->
<!-- script type="text/javascript"> ... </script -->
</body>
</html>
0