Re: [Fwd: Re: [Exim] Bug with check_spool_space]

Top Page
Delete this message
Reply to this message
Author: Nico Erfurth
Date:  
To: exim-users
Subject: Re: [Fwd: Re: [Exim] Bug with check_spool_space]
Philip Hazel wrote:

> Indeed it should. Noted.


And maybe this code from readconf.c should be changed
(opt_int handling):

if (tolower(s[count]) == 'k') { value *= 1024; count++; }
if (tolower(s[count]) == 'm') { value *= 1024*1024; count++; }

to

if (tolower(s[count]) == 'k') {value *= 1024; count++; }
else if (tolower(s[count]) == 'm') { value *= 1024*1024; count++; }

unchecked, but currently, it will allow options like
123KM

Nico