Autor: Nico Erfurth
Datum:
To: exim-users
Betreff: 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