* Fixes NB#57580
[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*
92 modest_protocol_info_get_auth_protocol_pair_list ();
93
94
95 /**
96  * modest_protocol_info_get_connection_protocol_pair_list:
97  * 
98  * return the list of <protocol,display-name>-tupels of protocols.
99  * The elements of the returned list are ModestPairs
100  * This is a convenience function for use with ModestComboBox
101  *  
102  * Returns: a list of protocols. After use, it should be freed
103  * with modest_pair_list_free
104  */
105 ModestPairList*
106 modest_protocol_info_get_connection_protocol_pair_list ();
107         
108         
109 /**
110  * modest_protocol_info_get_transport_store_protocol:
111  * @name: the name of the  ModestTransportStoreProtocol
112  * @proto_type: the type of protocol you want to have
113  *
114  * return the id of the protocol with the given name
115  *  
116  * Returns: the id of the protocol or MODEST_PROTOCOL_TRANSPORT_STORE_UNKNOWN
117  */
118 ModestTransportStoreProtocol
119 modest_protocol_info_get_transport_store_protocol (const gchar* name);
120
121 /**
122  * modest_protocol_info_get_transport_store_protocol_name:
123  * @proto: the protocol you are looking for
124  * 
125  * return the string id of the proto (such as "imap", or "smtp")
126  *  
127  * Returns: string id of the proto as a constant string, that should NOT be modified or freed
128  */
129 const gchar*
130 modest_protocol_info_get_transport_store_protocol_name (ModestTransportStoreProtocol proto);
131
132 /**
133  * modest_protocol_info_get_auth_protocol_name:
134  * @proto: the protocol you are looking for
135  * 
136  * return the string id of the proto (such as "password", or "cram-md5")
137  *  
138  * Returns: string id of the proto as a constant string, that should NOT be modified or freed
139  */
140 const gchar*
141 modest_protocol_info_get_auth_protocol_name (ModestAuthProtocol proto);
142
143 /**
144  * modest_protocol_info_get_auth_protocol_name:
145  * @proto: the protocol you are looking for
146  * 
147  * return the string id of the proto (such as "ssl", or "tls")
148  *   
149  * Returns: string id of the proto as a constant string, that should NOT be modified or freed
150  */
151 const gchar*
152 modest_protocol_info_get_connection_protocol_name (ModestAuthProtocol proto);
153
154
155 /**
156  * modest_protocol_info_protocol_is_local_store:
157  * @proto: the protocol
158  *
159  * is this protocol a store protocol?
160  *  
161  * Returns: TRUE if it is a local store, FALSE otherwise
162  *
163  */
164 gboolean modest_protocol_info_protocol_is_store (ModestTransportStoreProtocol proto);
165
166
167 /**
168  * modest_protocol_info_protocol_is_local_store:
169  * @proto: the protocol
170  *
171  * is this protocol a local store protocol?
172  *  
173  * Returns: TRUE if it is a local store, FALSE otherwise
174  *
175  */
176 gboolean modest_protocol_info_protocol_is_local_store (ModestTransportStoreProtocol proto);
177
178
179 G_END_DECLS
180 #endif /* __MODEST_PROTOCOL_INFO_H__ */
181