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

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Nico Erfurth
日付:  
To: exim-users
題目: 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