Re: [Mimedefang] Simplifying installations re: $Features{}

2011-11-17 Thread Tilman Schmidt
Am 17.11.2011 06:59, schrieb Philip Prindeville: On 11/16/11 2:07 AM, Tilman Schmidt wrote: $Features{'Virus:CLAMD'} = '/usr/sbin/clamd'; $Features{'Virus:CLAMAV'} = '/usr/bin/clamscan'; Works great. For what it's worth, I think most of the $Feature{} tests just care about true/false...

[Mimedefang] Only MX record is fake

2011-11-17 Thread Mike Grau
Hello folks, Those people checking for valid MX records for a sender's domain from within MIMEdefang ... is anybody checking if a sender's one and only MX record is a fake MX tempfailing service? Has anyone ever seen this type of setup for legitimate e-mail? For example: # nslookup

Re: [Mimedefang] Only MX record is fake

2011-11-17 Thread dfs
Those people checking for valid MX records for a sender's domain from within MIMEdefang ... is anybody checking if a sender's one and only MX record is a fake MX tempfailing service? Has anyone ever seen this type of setup for legitimate e-mail? Our commercial product has a setting to reject

[Mimedefang] Fedora/Centos dependency question

2011-11-17 Thread Philip Prindeville
I'm trying to bring up a CentOS box with Postfix and Mimedefang (and clamav, spamassassin, etc). I installed postfix, and that was fine. But when I did: # rpm --test -e sendmail sendmail-cf error: Failed dependencies: sendmail-cf = 8.12.0 is needed by (installed)

[Mimedefang] Virus scanning messages vs. attachments

2011-11-17 Thread Philip Prindeville
I was looking at how the example mimedefang-filter handles virii: # Copy original message into work directory as an mbox file for # virus-scanning md_copy_orig_msg_to_work_dir_as_mbox_file(); # Scan for viruses if any virus-scanners are installed my($code, $category, $action)

Re: [Mimedefang] Only MX record is fake

2011-11-17 Thread Ben Kamen
On 2011-11-17 3:05 PM, d...@roaringpenguin.com wrote: Those people checking for valid MX records for a sender's domain from within MIMEdefang ... is anybody checking if a sender's one and only MX record is a fake MX tempfailing service? Has anyone ever seen this type of setup for legitimate

Re: [Mimedefang] Only MX record is fake

2011-11-17 Thread Kevin A. McGrail
Those people checking for valid MX records for a sender's domain from within MIMEdefang ... is anybody checking if a sender's one and only MX record is a fake MX tempfailing service? Has anyone ever seen this type of setup for legitimate e-mail? For example: # nslookup -type=MX babe.org

Re: [Mimedefang] Only MX record is fake

2011-11-17 Thread kd6lvw
--- On Thu, 11/17/11, Mike Grau m.g...@kcc.state.ks.us wrote: Those people checking for valid MX records for a sender's domain from within MIMEdefang ... is anybody checking if a sender's one and only MX record is a fake MX tempfailing service? Has anyone ever seen this type of setup for

[Mimedefang] Eml Attachments

2011-11-17 Thread Nathan Findley
Hi all, How would I save an eml attachment on an incoming mail? Does this look reasonable on a basic level? sub filter_multipart () { my($entity, $fname, $ext, $type) = @_; open FH, /tmp/copy.eml or die $!; if (re_match($entity, '\.eml') and ($type eq message/rfc822)) {