See ChangeLog

Monotone-Parent: b35d04c6cd2614e48feea1b1dacb0a61aa27fe44
Monotone-Revision: 19bd38381f65942b0903a2e2aaa8abbc9c9862ab

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2010-11-08T17:04:29
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Ludovic Marcotte 2010-11-08 17:04:29 +00:00
parent 50a2cd8994
commit 861a90b970
2 changed files with 18 additions and 0 deletions

View File

@ -3,6 +3,9 @@
* SOPE/GDLContentStore/GCSAlarmsFolder.m
We now check for non-nil values before calling
-timeInterval...
* SoObjects/Mailer/SOGoMailAccount.m
We try to fallback to the imap server prior falling
back to localhost
2010-11-08 Francis Lachapelle <flachapelle@inverse.ca>

View File

@ -353,7 +353,22 @@ static NSString *sieveScriptName = @"sogo";
if (!sieveServer)
{
NSString *s;
sieveServer = @"localhost";
s = [dd imapServer];
if (s)
{
NSURL *url;
url = [NSURL URLWithString: s];
if ([url host])
sieveServer = [url host];
else
sieveServer = s;
}
}
else
{