]> err.no Git - scalable-opengroupware.org/blob - SoObjects/Mailer/SOGoMailIdentity.h
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1146 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / SoObjects / Mailer / SOGoMailIdentity.h
1 /*
2   Copyright (C) 2005 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
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
9   later version.
10
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.
15
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
19   02111-1307, USA.
20 */
21
22 #ifndef __Mailer_SOGoMailIdentity_H__
23 #define __Mailer_SOGoMailIdentity_H__
24
25 #import <Foundation/NSObject.h>
26
27 /*
28   SOGoMailIdentity
29   
30   A user identity bound to an account.
31   
32   Note: currently this is not a SoObject. This might change later on.
33   
34   
35   In Thunderbird you have a set of accounts which in turn have a set of
36   identities. There is one default identity.
37   
38   The identities then have:
39   - settings
40     - a name
41     - a from-email
42     - a reply-to
43     - an organization
44     - a signature
45     - a vcard (to be attached)
46   - folder settings
47     - Sent-Folder and bcc
48     - Drafts + Templates
49   - composition
50     - whether to use HTML
51     - whether to quote the source message (reply below, above the quote or
52       select the quote)
53 */
54
55 @class NSString;
56
57 @interface SOGoMailIdentity : NSObject
58 {
59   NSString *name;
60   NSString *email;
61   NSString *replyTo;
62   NSString *organization;
63   NSString *signature;
64   NSString *vCard;
65   NSString *sentFolderName;
66   NSString *sentBCC;
67   NSString *draftsFolderName;
68   NSString *templatesFolderName;
69   struct {
70     int composeHTML:1;
71     int reserved:31;
72   } idFlags;
73 }
74
75 /* accessors */
76
77 - (void)setName:(NSString *)_value;
78 - (NSString *)name;
79
80 - (void)setEmail:(NSString *)_value;
81 - (NSString *)email;
82
83 - (void)setReplyTo:(NSString *)_value;
84 - (NSString *)replyTo;
85
86 - (void)setOrganization:(NSString *)_value;
87 - (NSString *)organization;
88
89 - (void)setSignature:(NSString *)_value;
90 - (NSString *)signature;
91 - (BOOL)hasSignature;
92
93 - (void)setVCard:(NSString *)_value;
94 - (NSString *)vCard;
95 - (BOOL)hasVCard;
96
97 - (void)setSentFolderName:(NSString *)_value;
98 - (NSString *)sentFolderName;
99
100 - (void)setSentBCC:(NSString *)_value;
101 - (NSString *)sentBCC;
102
103 - (void)setDraftsFolderName:(NSString *)_value;
104 - (NSString *)draftsFolderName;
105
106 - (void)setTemplatesFolderName:(NSString *)_value;
107 - (NSString *)templatesFolderName;
108
109 @end
110
111 #endif /* __Mailer_SOGoMailIdentity_H__ */