Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mixmaster-filter(1) [debian man page]

MIXMASTER-FILTER(1)						 mixmaster-filter					       MIXMASTER-FILTER(1)

NAME
mixmaster-filter - Wrapper around mixmaster that removes unwanted header lines SYNOPSIS
mixmaster-filter DESCRIPTION
mixmaster-filter is a wrapper around mixmaster. It will filter out header lines which may endager your anonymity. All but a few options are passed on to mixmaster as is. If you specify -m, -g, -l or -n (see mixmaster(1)) then STDIN is filtered, otherwise mixmaster is executed as is. It is intented to be used from Mail User Agents like the mutt(1) email reader. OPTIONS
--mixmaster=MIXMASTER Set the path to the mixmaster binary. --configfile=FILTERCONFIGFILE Set a config file for mixmaster-filter. --help Print a brief help message and exit successfully. --version Print a version information and exit successfully. All other options are passed through to mixmaster. FILES
--configfile parameter MIXMASTER_FILTER_CONF environment ~/.Mix/filter.conf /etc/mixmaster/filter.conf The first file that is found is used. FILEFORMAT
The configuration file for mixmaster-filter is simple. Lines with whitespace only are ignored as are lines that have the hash our pound ("#") sign as their first non whitespace character. Lines are always truncated at the first hash our pound ("#") sign. The first logical line gives the filtering policy. It's either "FILTER" or "ALLOW". All other lines are taken as a list of Headers. If your policy is "FILTER" headers in your list will get removed from messages. If your policy is "ALLOW" only headers in your list will be passed to mixmaster. ENVIRONMENT
MIXMASTER_FILTER_CONF Config file to use HOME Your homedirectory. Used for finding your user configuration file. Also the default destination directory is $HOME/.Mix/ SEE ALSO
mixmaster(1) BUGS
It is far from perfect but should handle most standard cases satisfactorily. Please report them to the Debian Bug Tracking System as described at "http://bugs.debian.org/" or use a tool like reportbug(1). AUTHOR
Peter Palfrader, <peter@palfrader.org> $Revision: 459 $ 2013-02-08 MIXMASTER-FILTER(1)

Check Out this Related Man Page

Net::LDAP::Filter(3)					User Contributed Perl Documentation				      Net::LDAP::Filter(3)

NAME
Net::LDAP::Filter - representation of LDAP filters SYNOPSIS
use Net::LDAP::Filter; $filter = Net::LDAP::Filter->new( $filter_str ); DESCRIPTION
The Net::LDAP::Filter object lets you directly manipulate LDAP filters without worrying about the string representation and all the associated escaping mechanisms. CONSTRUCTOR
new ( FILTER ) Create a new object and parse FILTER. METHODS
parse ( FILTER ) Parse FILTER. The next call to ber will return this filter encoded. as_string Return the filter in text form. print ( [ FH ] ) Print the text representation of the filter to FH, or the currently selected output handle if FH is not given. FILTER SYNTAX
Below is the syntax for a filter given in RFC 4515 http://www.ietf.org/rfc/rfc4515.txt filter = "(" filtercomp ")" filtercomp = and / or / not / item and = "&" filterlist or = "|" filterlist not = "!" filter filterlist = 1*filter item = simple / present / substring / extensible simple = attr filtertype value filtertype = equal / approx / greater / less equal = "=" approx = "~=" greater = ">=" less = "<=" extensible = attr [":dn"] [":" matchingrule] ":=" value / [":dn"] ":" matchingrule ":=" value present = attr "=*" substring = attr "=" [initial] any [final] initial = value any = "*" *(value "*") final = value attr = AttributeDescription from Section 4.1.4 of RFC 4511 matchingrule = MatchingRuleId from Section 4.1.8 of RFC 4511 value = AttributeValue from Section 4.1.5 of RFC 4511 Special Character encodings --------------------------- * 2a, * ( 28, ( ) 29, ) 5c, \ NUL 0 SEE ALSO
Net::LDAP, Other online documentation ACKNOWLEDGEMENTS
This document is based on a document originally written by Russell Fulton <r.fulton@auckland.ac.nz>. AUTHOR
Graham Barr <gbarr@pobox.com> Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org>. COPYRIGHT
Copyright (c) 1997-2004 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.2 2012-09-20 Net::LDAP::Filter(3)
Man Page