Monotone-Parent: 063d3ecd7926ad37de863baa4d97b7dc9fac9283

Monotone-Revision: 3c7e54830dfa3cab2fb852917934640dcf8f14bf

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-06-15T18:35:00
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-06-15 18:35:00 +00:00
parent 7a4c4df9a7
commit cf79ddcb62
3 changed files with 70 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2011-06-15 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreSpoolerContext.[hm]: new backend context.
2011-06-14 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/UIxAttendeesEditor.js: adjustments for the

View File

@ -0,0 +1,32 @@
/* MAPIStoreSpoolerContext.h - this file is part of SOGo
*
* Copyright (C) 2011 Inverse inc
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This file is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef MAPISTORESPOOLERCONTEXT_H
#define MAPISTORESPOOLERCONTEXT_H
#import "MAPIStoreFSBaseContext.h"
@interface MAPIStoreSpoolerContext : MAPIStoreFSBaseContext
@end
#endif /* MAPISTORESPOOLERCONTEXT_H */

View File

@ -0,0 +1,34 @@
/* MAPIStoreSpoolerContext.m - this file is part of SOGo
*
* Copyright (C) 2011 Inverse inc
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This file is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#import <Foundation/NSString.h>
#import "MAPIStoreSpoolerContext.h"
@implementation MAPIStoreSpoolerContext
+ (NSString *) MAPIModuleName
{
return @"spooler-queue";
}
@end