Mail::MIMEDefang - email filtering milter
Mail::MIMEDefang is a framework for filtering e-mail. It uses Sendmail\'s Milter API, some C glue code, and some Perl code to let you write high-performance mail filters in Perl.
People use MIMEDefang to:
Block viruses Block or tag spam Remove HTML mail parts Add boilerplate disclaimers to outgoing mail Remove or alter attachments Replace attachments with URLs Implement sophisticated access controls.
You\'re limited only by your imagination. If you can think of it and code it in Perl, you can do it with MIMEDefang.
Initialize global variables used across MIMEDefang instance and filter.
Prints to stdout and flush buffer.
Initialize e syslog object using Sys::Syslog or Unix::Syslog as appropriate.
Prints a message to syslog (3) using the specified facility
This is called to log events that occur during mimedefang
processing. It should be called from mimedefang-filter with
appropriate event names and values.
Possible examples:
md_graphdefang_log(virus,$VirusName,$filename);
md_graphdefang_log(spam,$hits);
md_graphdefang_log(bad_filename,$filename,$extension);
If you need to log UTF-8 strings you can call the sub as:
md_graphdefang_log('spam',$hits, undef, 1)
Automatically detect and load Perl modules needed for some features like SpamAssassin, rbl checks, zip file listing and HTML parsing.
Check if antivirus support should be loaded by looking at
%Features
Open the status file descriptor
Sets the status tag for this worker inside the multiplexor.
Updates status tag inside multiplexor and pushes onto stack.
Pops previous status of stack and sets tag in multiplexor.
Encode a string with unsafe chars as %XY where X and Y are hex digits.
Encode a string with unsafe chars as %XY where X and Y are hex digits. Quotes or spaces are not encoded but commas are encoded.
Decode a string previously encoded by percent_encode().
Writes a result line to the RESULTS file. $cmd
should be a
one-letter command for the RESULTS file @args
are the arguments
for $cmd
, if any. They will be percent_encode()\'ed before
being written to the file. Returns 0 or 1 and an optional warning
message.
Tells mimedefang C program message has not been altered.
Tells mimedefang C program message has been altered.
Returns 1 if we are processing a message; 0 otherwise.
Returns 1 if we are not in filter wrapup; 0 otherwise.
Returns 1 if we are inside filter or filter_multipart, 0 otherwise.
Returns 1 if we are inside filter_end 0 otherwise.
Sends quarantine notification message, if anything was quarantined.
Tells mimedefang C program Perl filter has finished successfully. Also mails any quarantine notifications and sender notifications.
Sends a mail message using Sendmail. Invokes Sendmail without involving the shell, so that shell metacharacters won\'t cause security problems. Deliverimode parameter is the optional sendmail delivery mode arg (default -odd).
Sends a mail message to the administrator
Sends a multipart mail message using Sendmail. Invokes Sendmail without involving the shell, so that shell metacharacters won't cause security problems.
This function should only be called from filter_sender and filter_recipient. This will read the COMMANDS file (as described in mimedefang-protocol(7), and will fill or update the following global variables: $Sender, @Recipients, %RecipientMailers, $RelayAddr, $RealRelayAddr, $RelayHostname, $RealRelayHostname, $QueueID, $Helo, %SendmailMacros. If you do not call read_commands_file, then the only information available in filter_sender and filter_recipient is that which is passed as an argument to the function.
Mail::MIMEDefang::Actions (3)
Mail::MIMEDefang::Antispam (3)
Mail::MIMEDefang::Antivirus (3)
Mail::MIMEDefang::DKIM (3)
Mail::MIMEDefang::DKIM::ARC (3)
Mail::MIMEDefang::Authres (3)
Mail::MIMEDefang::Mail (3)
Mail::MIMEDefang::MIME (3)
Mail::MIMEDefang::Net (3)
Mail::MIMEDefang::RFC2822 (3)
Mail::MIMEDefang::Unit (3)
Mail::MIMEDefang::Utils (3)