Monotone-Parent: 158571d4f7e1fd1da2b47567f93275d509fff71d

Monotone-Revision: 0f0cf5779a3cca5a823d91514f517fcd43c8eb4c

Monotone-Author: crobert@inverse.ca
Monotone-Date: 2009-07-02T17:21:07
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
C Robert 2009-07-02 17:21:07 +00:00
parent f36a8dd185
commit af20a0658f
2 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2009-07-02 Cyril Robert <crobert@inverse.ca>
* UI/MailerUI/UIxMailFolderActions.m: Added auto-subscribe on imap folder
creation.
2009-07-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentFolder.m

View File

@ -52,7 +52,7 @@
WOResponse *response;
NGImap4Connection *connection;
NSException *error;
NSString *folderName;
NSString *folderName, *path;
co = [self clientObject];
@ -67,7 +67,12 @@
[response appendContentString: @"Unable to create folder."];
}
else
response = [self responseWith204];
{
path = [NSString stringWithFormat: @"%@%@",
[[co imap4URL] path], folderName];
[[connection client] subscribe: path];
response = [self responseWith204];
}
}
else
{