LSMailDeliverCommand.m (opengroupware-5.5rc2) | : | LSMailDeliverCommand.m (opengroupware-5.5rc3) | ||
---|---|---|---|---|
skipping to change at line 606 | skipping to change at line 606 | |||
[self setReturnValue:[self _errorExceptionWithReason:str]]; | [self setReturnValue:[self _errorExceptionWithReason:str]]; | |||
return; | return; | |||
} | } | |||
if (errorCode == 17664) { | if (errorCode == 17664) { | |||
NSString *str; | NSString *str; | |||
[self logWithFormat:@"sendmail: message file too big [%d]", | [self logWithFormat:@"sendmail: message file too big [%d]", | |||
[self->mimeData length]]; | [self->mimeData length]]; | |||
str = [NSString stringWithFormat:@"MessageFileTooBig %d", | str = [NSString stringWithFormat:@"MessageFileTooBig %"PRIuPTR, | |||
[self->mimeData length]]; | [self->mimeData length]]; | |||
[self setReturnValue:[self _errorExceptionWithReason:str]]; | [self setReturnValue:[self _errorExceptionWithReason:str]]; | |||
return; | return; | |||
} | } | |||
[self logWithFormat:@"[1] Could not write mail to sendmail! <%d>", | [self logWithFormat:@"[1] Could not write mail to sendmail! <%d>", | |||
errorCode]; | errorCode]; | |||
if ([self->mimeData length] > 5000) | if ([self->mimeData length] > 5000) | |||
[self logWithFormat:@"[1] message: [size: %d]", [self->mimeData length]]; | [self logWithFormat:@"[1] message: [size: %d]", [self->mimeData length]]; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |