Re: [exim] Newbie MIME ACL question
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
Galego
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
This message is part of the following thread:
the complete thread tree sorted by date
Mark Douglas at
2006-12-12 22:13
Author:
Tom Kistner
Date:
2006-12-12 22:33
UTC
To:
Mark Douglas
CC:
exim-users
Subject:
Re: [exim] Newbie MIME ACL question
Mark Douglas wrote:
> condition = ${if >{$mime_content_size}{1k}{1}{0}}
Make that
condition = ${if >{$mime_content_size}{1}{1}{0}}
$mime_content_size contains the size already in kilobytes. This is a
historical misdesign, but now too late to fix.
/tom