* speed up modest_account_mgr_has_accounts by caching the status
[modest] / src / modest-protocol-info.h
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20 \ * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #ifndef __MODEST_PROTOCOL_INFO_H__
31 #define __MODEST_PROTOCOL_INFO_H__
32
33 #include <modest-pair.h>
34 #include <glib.h>
35
36 G_BEGIN_DECLS
37
38 /** Transport and Store protocols. */
39 typedef enum {
40         MODEST_PROTOCOL_TRANSPORT_STORE_UNKNOWN,
41         MODEST_PROTOCOL_TRANSPORT_SENDMAIL,
42         MODEST_PROTOCOL_TRANSPORT_SMTP,
43
44         MODEST_PROTOCOL_STORE_POP,
45         MODEST_PROTOCOL_STORE_IMAP,
46         MODEST_PROTOCOL_STORE_MAILDIR,
47         MODEST_PROTOCOL_STORE_MBOX
48 } ModestTransportStoreProtocol;
49
50 /** Secure connection methods. */
51 typedef enum {    
52         MODEST_PROTOCOL_CONNECTION_NORMAL,
53         MODEST_PROTOCOL_CONNECTION_SSL,   
54         MODEST_PROTOCOL_CONNECTION_TLS,
55         MODEST_PROTOCOL_CONNECTION_TLS_OP
56 } ModestConnectionProtocol;
57
58 /** Secure authentication methods. */
59 typedef enum {    
60         MODEST_PROTOCOL_AUTH_NONE,
61         MODEST_PROTOCOL_AUTH_PASSWORD,
62         MODEST_PROTOCOL_AUTH_CRAMMD5
63 } ModestAuthProtocol;
64
65
66
67
68 /**
69  * modest_protocol_info_get_transport_store_protocol_pair_list:
70  * 
71  * return the list of <protocol,display-name>-tupels of protocols.
72  * The elements of the returned list are ModestPairs
73  * This is a convenience function for use with ModestComboBox
74  *  
75  * Returns: a list of protocols. After use, it should be freed
76  * with modest_pair_list_free
77  */
78 ModestPairList*
79 modest_protocol_info_get_transport_store_protocol_pair_list ();
80
81 /**
82  * modest_protocol_info_get_auth_protocol_pair_list:
83  * 
84  * return the list of <protocol,display-name>-tupels of protocols.
85  * The elements of the returned list are ModestPairs
86  * This is a convenience function for use with ModestComboBox
87  *  
88  * Returns: a list of protocols. After use, it should be freed
89  * with modest_pair_list_free
90  */
91 ModestPairList* modest_protocol_info_get_auth_protocol_pair_list (void);
92
93
94 /**
95  * modest_protocol_info_get_connection_protocol_pair_list:
96  * 
97  * return the list of <protocol,display-name>-tupels of protocols.
98  * The elements of the returned list are ModestPairs
99  * This is a convenience function for use with ModestComboBox
100  *  
101  * Returns: a list of protocols. After use, it should be freed
102  * with modest_pair_list_free
103  */
104 ModestPairList* modest_protocol_info_get_connection_protocol_pair_list (void);
105         
106         
107 /**
108  * modest_protocol_info_get_transport_store_protocol:
109  * @name: the name of the  #ModestTransportStoreProtocol
110  *
111  * return the id of the protocol with the given name
112  *  
113  * Returns: the id of the protocol or MODEST_PROTOCOL_TRANSPORT_STORE_UNKNOWN
114  */
115 ModestTransportStoreProtocol modest_protocol_info_get_transport_store_protocol (const gchar* name);
116
117 /**
118  * modest_protocol_info_get_auth_protocol:
119  * @name: The name of the #ModestAuthProtocol
120  *
121  * Returns the ID of the protocol with the given name
122  *
123  * Returns: The ID of the protocol or MODEST_PROTOCOL_AUTH_NONE
124  */
125 ModestAuthProtocol modest_protocol_info_get_auth_protocol (const gchar* name);
126
127 /**
128  * modest_protocol_info_get_transport_store_protocol_name:
129  * @proto: the protocol you are looking for
130  * 
131  * return the string id of the proto (such as "imap", or "smtp")
132  *  
133  * Returns: string id of the proto as a constant string, that should NOT be modified or freed
134  */
135 const gchar* modest_protocol_info_get_transport_store_protocol_name (ModestTransportStoreProtocol proto);
136
137 /**
138  * modest_protocol_info_get_auth_protocol_name:
139  * @proto: the protocol you are looking for
140  * 
141  * return the string id of the proto (such as "password", or "cram-md5")
142  *  
143  * Returns: string id of the proto as a constant string, that should NOT be modified or freed
144  */
145 const gchar* modest_protocol_info_get_auth_protocol_name (ModestAuthProtocol proto);
146
147 /*
148  * modest_protocol_get_auth_protocol_pair_list:
149  *
150  * Get the list of support authentication methods supported by modest including 
151  * the display names of those.
152  *
153  * Returns: List of method/display name pairs
154  */
155 ModestPairList* modest_protocol_info_get_auth_protocol_pair_list (void);
156
157 /**
158  * modest_protocol_info_get_auth_protocol_name:
159  * @proto: the protocol you are looking for
160  * 
161  * return the string id of the proto (such as "ssl", or "tls")
162  *   
163  * Returns: string id of the proto as a constant string, that should NOT be modified or freed
164  */
165 const gchar*
166 modest_protocol_info_get_connection_protocol_name (ModestAuthProtocol proto);
167
168
169 /**
170  * modest_protocol_info_protocol_is_local_store:
171  * @proto: the protocol
172  *
173  * is this protocol a store protocol?
174  *  
175  * Returns: TRUE if it is a local store, FALSE otherwise
176  *
177  */
178 gboolean modest_protocol_info_protocol_is_store (ModestTransportStoreProtocol proto);
179
180
181 /**
182  * modest_protocol_info_protocol_is_local_store:
183  * @proto: the protocol
184  *
185  * is this protocol a local store protocol?
186  *  
187  * Returns: TRUE if it is a local store, FALSE otherwise
188  *
189  */
190 gboolean modest_protocol_info_protocol_is_local_store (ModestTransportStoreProtocol proto);
191
192
193 /**
194  * modest_protocol_info_is_secure:
195  * @protocol
196  * 
197  * is the protocol connection secure (e.g encrypted)?
198  * 
199  * Returns: TRUE if it is secure, FALSE otherwise
200  *
201  */
202 gboolean modest_protocol_info_is_secure(ModestConnectionProtocol protocol);
203
204 /**
205  * modest_protocol_info_auth_is_secure:
206  * @protocol
207  * 
208  * is the protocol authentication secure (e.g encrypted)?
209  * 
210  * Returns: TRUE if it is secure, FALSE otherwise
211  *
212  */
213 gboolean modest_protocol_info_auth_is_secure(ModestAuthProtocol protocol);
214
215
216 G_END_DECLS
217 #endif /* __MODEST_PROTOCOL_INFO_H__ */
218