Patch level : 10.0 964

Files correlati     : ba7.exe
Ricompilazione Demo : [ ]
Commento           :

Abbassao il limite in byte per le transazioni valide nel postino (64 Byte)


git-svn-id: svn://10.65.10.50/trunk@16721 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 2008-06-11 10:52:31 +00:00
parent 30f37d226d
commit 9a3f75125c

View File

@ -639,7 +639,7 @@ void TMailer_mask::scan_dir(const TFilename& dir, TMail_messages& box) const
FOR_EACH_ARRAY_ROW(msg, r, row)
{
const int size = fsize(*row);
if (size > 128 && size < 48*1024)
if (size > 64 && size < 48*1024)
{
char* buffer = text.get_buffer(size);
TScanner scanner(*row);