Don't limit Sieve script to 8KB

Fixes #2745
This commit is contained in:
Francis Lachapelle
2014-04-30 12:35:25 -04:00
parent 8c563c2922
commit 4e42a6a689
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -584,7 +584,7 @@ static NSString *sieveScriptName = @"sogo";
int count, max;
NSDictionary *currentScript;
sieveScript = [NSMutableString stringWithCapacity: 8192];
sieveScript = [NSMutableString string];
ASSIGN (requirements, newRequirements);
[scriptError release];