Monotone-Parent: d632e0788f55ab87c5f5dbc3b204b2ff4ebc496f

Monotone-Revision: 97ed1f333beb4dc0828de12b26527d124123d5d1

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-02-19T14:51:07
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-02-19 14:51:07 +00:00
parent 7c0d2b8954
commit f9dac5dbcf
2 changed files with 9 additions and 2 deletions
+4
View File
@@ -1,5 +1,9 @@
2010-02-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/MailerUI/UIxMailFolderActions.m (-createFolderAction): we
check if the clientObject responds to "aboluteImap4Name",
otherwise the subscription is made to the folderName alone.
* Main/SOGo.m (-run): moved initialization logs from +initialize
here, so that they are output to the redirected output stream.
Added version number to "starting" line.
+5 -2
View File
@@ -68,8 +68,11 @@
}
else
{
path = [NSString stringWithFormat: @"%@%@",
[co absoluteImap4Name], folderName];
if ([co respondsToSelector: @selector (absoluteImap4Name)])
path = [NSString stringWithFormat: @"%@%@",
[co absoluteImap4Name], folderName];
else
path = folderName;
[[connection client] subscribe: path];
response = [self responseWith204];