fix(ui): Add error message on UI when too many mails are sent in short time. Fix fr translation. Fix documentation

This commit is contained in:
smizrahi
2023-03-21 17:35:45 +01:00
parent e12583eb4e
commit 7ad7f5efa6
3 changed files with 4 additions and 4 deletions

View File

@@ -761,8 +761,8 @@ Default value is `0`, or disabled.
|S |SOGoMessageSubmissionBlockInterval
|Number of seconds, default to `300` (or 5 minutes). Note that
_SOGoCacheCleanupInterval_ must be set to a value equal or higher than
_SOGoFailedLoginBlockInterval_.
_SOGoMessageSubmissionBlockInterval_ must be set to a value equal or lower than
_SOGoCacheCleanupInterval_.
|S |SOGoMaximumRequestCount
|Parameter used to control the number of requests a user can send to the SOGo

View File

@@ -448,7 +448,7 @@
"Mark as Unread" = "Marquer comme non-lu";
"Mark as Read" = "Marquer comme lu";
"Closing Window ..." = "Fermer la fenêtre...";
"Tried to send too many mails. Please wait." = "Vous avez envoyé trop de courriels. Veillez patienter.";
"Tried to send too many mails. Please wait." = "Vous avez envoyé trop de courriels. Veuillez patienter.";
"View Mail" = "Voir le courriel";
"This message contains external images." = "Ce message contient des images externes.";
"Expanded" = "Ouvert";

View File

@@ -866,7 +866,7 @@ static NSArray *infoKeys = nil;
[self labelForKey: @"Tried to send too many mails. Please wait."],
@"message",
nil];
return [self responseWithStatus: 200
return [self responseWithStatus: 405
andString: [jsonResponse jsonRepresentation]];
}