From 9a3f75125cd9a8ed0b9fd0308d256d08e020afce Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 11 Jun 2008 10:52:31 +0000 Subject: [PATCH] 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 --- ba/ba7100.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ba/ba7100.cpp b/ba/ba7100.cpp index c740c2b6b..184181b90 100755 --- a/ba/ba7100.cpp +++ b/ba/ba7100.cpp @@ -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);