(feat) added photo support in GAL search ops

This commit is contained in:
Ludovic Marcotte
2017-04-21 15:29:34 -04:00
parent 5c573b9a76
commit a9763e94a4
4 changed files with 77 additions and 7 deletions
+15
View File
@@ -712,4 +712,19 @@ _injectConfigurationFromFile (NSMutableDictionary *defaultsDict,
return v;
}
//
// See https://msdn.microsoft.com/en-us/library/gg672032(v=exchg.80).aspx
//
- (int) maximumPictureSize
{
int v;
v = [self integerForKey: @"SOGoMaximumPictureSize"];
if (!v)
v = 102400;
return v;
}
@end