adium 5616:3c08f545ff57: Fix changelog typo.
commits at adium.im
commits at adium.im
Fri Jul 5 00:21:18 UTC 2013
details: http://hg.adium.im/adium/rev/3c08f545ff57
revision: 5616:3c08f545ff57
branch: adium-1.5.8
author: Robert Vehse <robertvehse at fastmail.fm>
date: Fri Jul 05 02:20:52 2013 +0200
Fix changelog typo.
Subject: adium 5617:f808fb8a9f35: Set SIP to be case sensitive and allow upper case characters
details: http://hg.adium.im/adium/rev/f808fb8a9f35
revision: 5617:f808fb8a9f35
branch: adium-1.5.8
author: Pete Woods <email at pete-woods.com>
date: Wed Jul 03 12:11:34 2013 +0100
Set SIP to be case sensitive and allow upper case characters
diffs (31 lines):
diff -r 8af6a0aacb48 -r f808fb8a9f35 ChangeLogs/Changes.txt
--- a/ChangeLogs/Changes.txt Wed Jul 03 11:13:41 2013 +0200
+++ b/ChangeLogs/Changes.txt Wed Jul 03 12:11:34 2013 +0100
@@ -10,7 +10,7 @@
* Fixed a bug that could cause SSL connections to be closed prematurely. (#15405, #15411, #15741, #16356)
* Fixed the following weaknesses in the SSL code:
* Removed all anonymous ciphers from the list Adium tries, these are insecure and would crash Adium.
- * Removed SSL_RSA_WITH_NULL_MD5 from the list of cipers, as it doesn't use encryption.
+ * Removed SSL_RSA_WITH_NULL_MD5 from the list of ciphers, as it doesn't use encryption.
* Removed the caching of untrusted certificates, as the implementation would make it easy to replace it with a different certificate when reconnecting.
Version 1.5.6 (3/18/2013)
diff -r 8af6a0aacb48 -r f808fb8a9f35 Plugins/Purple Service/ESSimpleService.m
--- a/Plugins/Purple Service/ESSimpleService.m Wed Jul 03 11:13:41 2013 +0200
+++ b/Plugins/Purple Service/ESSimpleService.m Wed Jul 03 12:11:34 2013 +0100
@@ -51,13 +51,13 @@
return @"SIP / SIMPLE";
}
- (NSCharacterSet *)allowedCharacters{
- return [NSCharacterSet characterSetWithCharactersInString:@"+abcdefghijklmnopqrstuvwxyz0123456789._-@\\"];
+ return [NSCharacterSet characterSetWithCharactersInString:@"+abcdefghijklmnopqrstuvwxyzABCEDFGHIJKLMNOPQRSTUVWXYZ0123456789._-@\\"];
}
- (NSUInteger)allowedLength{
return 255;
}
- (BOOL)caseSensitive{
- return NO;
+ return YES;
}
- (AIServiceImportance)serviceImportance{
return AIServiceSecondary;
More information about the commits
mailing list