2 Copyright (C) 2005 SKYRIX Software AG
4 This file is part of OpenGroupware.org.
6 OGo is free software; you can redistribute it and/or modify it under
7 the terms of the GNU Lesser General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
11 OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
14 License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with OGo; see the file COPYING. If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 #ifndef __Mailer_SOGoMailIdentity_H__
23 #define __Mailer_SOGoMailIdentity_H__
25 #import <Foundation/NSObject.h>
30 A user identity bound to an account.
32 Note: currently this is not a SoObject. This might change later on.
35 In Thunderbird you have a set of accounts which in turn have a set of
36 identities. There is one default identity.
38 The identities then have:
45 - a vcard (to be attached)
51 - whether to quote the source message (reply below, above the quote or
57 @interface SOGoMailIdentity : NSObject
62 NSString *organization;
65 NSString *sentFolderName;
67 NSString *draftsFolderName;
68 NSString *templatesFolderName;
77 - (void)setName:(NSString *)_value;
80 - (void)setEmail:(NSString *)_value;
83 - (void)setReplyTo:(NSString *)_value;
84 - (NSString *)replyTo;
86 - (void)setOrganization:(NSString *)_value;
87 - (NSString *)organization;
89 - (void)setSignature:(NSString *)_value;
90 - (NSString *)signature;
93 - (void)setVCard:(NSString *)_value;
97 - (void)setSentFolderName:(NSString *)_value;
98 - (NSString *)sentFolderName;
100 - (void)setSentBCC:(NSString *)_value;
101 - (NSString *)sentBCC;
103 - (void)setDraftsFolderName:(NSString *)_value;
104 - (NSString *)draftsFolderName;
106 - (void)setTemplatesFolderName:(NSString *)_value;
107 - (NSString *)templatesFolderName;
111 #endif /* __Mailer_SOGoMailIdentity_H__ */