Difference between revisions of "7bit"

From Mailutils
Jump to navigationJump to search
(Initial revision)
(No difference)

Revision as of 11:26, 15 December 2010

Bin7 is a Mailutils filter. It operates in both encode and decode modes.

In encode mode, the bin7 filter converts its input into 7-bit ASCII, by clearing the 8th bit on each processed byte.

In decode mode, it operates exactly as the bit8 filter, i.e. copies its input to the output verbatim.

This filter is described in mailutils/filter.h:

extern mu_filter_record_t mu_bit7_filter;

To create this filter, use the mu_filter_stream_create function:

  int rc;          /* Return code */
  mu_stream_t flt; /* Filter stream */
  mu_stream_t input; /* Input stream */

  initialize_input_stream (&stream);
  rc = mu_filter_stream_create (&flt, input, "bin7", MU_FILTER_DECODE, MU_STREAM_READ);