Fixes a potential crash when moving messages
[modest] / src / modest-protocol-registry.c
1 /* Copyright (c) 2007, 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 #include <string.h>
31 #include <modest-account-protocol.h>
32 #include <modest-defs.h>
33 #include <modest-protocol-registry.h>
34 #include <tny-camel-pop-store-account.h>
35 #include <tny-camel-imap-store-account.h>
36 #include <tny-camel-store-account.h>
37 #include <tny-camel-transport-account.h>
38 #include <tny-simple-list.h>
39
40 #define TAG_ALL_PROTOCOLS "__MODEST_PROTOCOL_REGISTRY_ALL_PROTOCOLS"
41
42 /* These seem to be listed in 
43  * libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-store.c 
44  */
45 #define MODEST_ACCOUNT_OPTION_SSL_NEVER "never"
46 /* This is a tinymail camel-lite specific option, 
47  * roughly equivalent to "always" in regular camel,
48  * which is appropriate for a generic "SSL" connection option: */
49 #define MODEST_ACCOUNT_OPTION_SSL_WRAPPED "wrapped"
50 /* Not used in our UI so far: */
51 #define MODEST_ACCOUNT_OPTION_SSL_WHEN_POSSIBLE "when-possible"
52 /* This is a tinymailcamel-lite specific option that is not in regular camel. */
53 #define MODEST_ACCOUNT_OPTION_SSL_TLS "tls"
54
55 /* Posssible values for tny_account_set_secure_auth_mech().
56  * These might be camel-specific.
57  * Really, tinymail should use an enum.
58  * camel_sasl_authtype() seems to list some possible values.
59  */
60  
61 /* Note that evolution does not offer these for IMAP: */
62 #define MODEST_ACCOUNT_AUTH_PLAIN "PLAIN"
63 #define MODEST_ACCOUNT_AUTH_ANONYMOUS "ANONYMOUS"
64
65 /* Caeml's IMAP uses NULL instead for "Password".
66  * Also, not that Evolution offers "Password" for IMAP, but "Login" for SMTP.*/
67 #define MODEST_ACCOUNT_AUTH_PASSWORD "LOGIN" 
68 #define MODEST_ACCOUNT_AUTH_CRAMMD5 "CRAM-MD5"
69
70 /* These seem to be listed in 
71  * libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-provider.c 
72  */
73 #define MODEST_ACCOUNT_OPTION_USE_LSUB "use_lsub" /* Show only subscribed folders */
74 #define MODEST_ACCOUNT_OPTION_CHECK_ALL "check_all" /* Check for new messages in all folders */
75
76 /* 'private'/'protected' functions */
77 static void   modest_protocol_registry_class_init (ModestProtocolRegistryClass *klass);
78 static void   modest_protocol_registry_finalize   (GObject *obj);
79 static void   modest_protocol_registry_instance_init (ModestProtocolRegistry *obj);
80 static GHashTable *   modest_protocol_registry_create_tag (ModestProtocolRegistry *obj, const gchar *tag);
81
82 /* translation handlers */
83 static gchar * translation_is_userdata (gpointer userdata, va_list args);
84
85 typedef struct _ModestProtocolRegistryPrivate ModestProtocolRegistryPrivate;
86 struct _ModestProtocolRegistryPrivate {
87         GHashTable *tags_table;
88         GHashTable *priorities;
89 };
90
91 #define MODEST_PROTOCOL_REGISTRY_GET_PRIVATE(o)     (G_TYPE_INSTANCE_GET_PRIVATE ((o), \
92                                                                          MODEST_TYPE_PROTOCOL_REGISTRY, \
93                                                                          ModestProtocolRegistryPrivate))
94
95 /* globals */
96 static GObjectClass *parent_class = NULL;
97
98 static ModestProtocolType pop_protocol_type_id = -1;
99 static ModestProtocolType imap_protocol_type_id = -1;
100 static ModestProtocolType maildir_protocol_type_id = -1;
101 static ModestProtocolType mbox_protocol_type_id = -1;
102 static ModestProtocolType smtp_protocol_type_id = -1;
103 static ModestProtocolType sendmail_protocol_type_id = -1;
104 static ModestProtocolType none_connection_protocol_type_id = -1;
105 static ModestProtocolType ssl_connection_protocol_type_id = -1;
106 static ModestProtocolType tls_connection_protocol_type_id = -1;
107 static ModestProtocolType tlsop_connection_protocol_type_id = -1;
108 static ModestProtocolType none_auth_protocol_type_id = -1;
109 static ModestProtocolType password_auth_protocol_type_id = -1;
110 static ModestProtocolType crammd5_auth_protocol_type_id = -1;
111
112 GType
113 modest_protocol_registry_get_type (void)
114 {
115         static GType my_type = 0;
116
117         if (!my_type) {
118                 static const GTypeInfo my_info = {
119                         sizeof(ModestProtocolRegistryClass),
120                         NULL,   /* base init */
121                         NULL,   /* base finalize */
122                         (GClassInitFunc) modest_protocol_registry_class_init,
123                         NULL,   /* class finalize */
124                         NULL,   /* class data */
125                         sizeof(ModestProtocolRegistry),
126                         0,      /* n_preallocs */
127                         (GInstanceInitFunc) modest_protocol_registry_instance_init,
128                         NULL
129                 };
130
131                 my_type = g_type_register_static (G_TYPE_OBJECT,
132                                                   "ModestProtocolRegistry",
133                                                   &my_info, 0);
134         }
135         return my_type;
136 }
137
138 static void
139 modest_protocol_registry_class_init (ModestProtocolRegistryClass *klass)
140 {
141         GObjectClass *object_class;
142         object_class = (GObjectClass *) klass;
143
144         parent_class = g_type_class_peek_parent (klass);
145         object_class->finalize = modest_protocol_registry_finalize;
146         g_type_class_add_private (object_class,
147                                   sizeof(ModestProtocolRegistryPrivate));
148 }
149
150 static void
151 modest_protocol_registry_instance_init (ModestProtocolRegistry *obj)
152 {
153         ModestProtocolRegistryPrivate *priv;
154
155         priv = MODEST_PROTOCOL_REGISTRY_GET_PRIVATE (obj);
156
157         priv->tags_table = g_hash_table_new_full (g_str_hash, g_str_equal, 
158                                                   g_free, (GDestroyNotify) g_hash_table_unref);
159         priv->priorities = g_hash_table_new (g_direct_hash, g_direct_equal);
160         
161         modest_protocol_registry_create_tag (obj, TAG_ALL_PROTOCOLS);
162 }
163
164 static void   
165 modest_protocol_registry_finalize   (GObject *obj)
166 {
167         ModestProtocolRegistryPrivate *priv;
168
169         priv = MODEST_PROTOCOL_REGISTRY_GET_PRIVATE (obj);
170
171         /* Free hash tables */
172         if (priv->tags_table)
173                 g_hash_table_unref (priv->tags_table);
174         if (priv->priorities)
175                 g_hash_table_unref (priv->priorities);
176
177         G_OBJECT_CLASS (parent_class)->finalize (obj);
178 }
179
180
181 ModestProtocolRegistry*
182 modest_protocol_registry_new ()
183 {
184         return g_object_new (MODEST_TYPE_PROTOCOL_REGISTRY, NULL);
185 }
186
187 void
188 modest_protocol_registry_add (ModestProtocolRegistry *self, ModestProtocol *protocol, gint priority, const gchar *first_tag, ...)
189 {
190         va_list list;
191         GSList *tags_list = NULL, *node = NULL;
192         const gchar *va_string;
193         GHashTable *tag_table;
194         ModestProtocolRegistryPrivate *priv;
195
196         g_return_if_fail (MODEST_IS_PROTOCOL_REGISTRY (self));
197         g_return_if_fail (MODEST_IS_PROTOCOL (protocol));
198         g_return_if_fail (first_tag != NULL);
199         priv = MODEST_PROTOCOL_REGISTRY_GET_PRIVATE (self);
200
201         tag_table = g_hash_table_lookup (priv->tags_table, TAG_ALL_PROTOCOLS);
202         g_hash_table_insert (tag_table, GINT_TO_POINTER (modest_protocol_get_type_id (protocol)), g_object_ref (protocol));
203
204         g_hash_table_insert (priv->priorities, GINT_TO_POINTER (modest_protocol_get_type_id (protocol)), GINT_TO_POINTER (priority));
205
206         tags_list = g_slist_prepend (tags_list, (gpointer) first_tag);
207         va_start (list, first_tag);
208         while ((va_string = va_arg (list, const gchar *)) != NULL) {
209                 tags_list = g_slist_prepend (tags_list, (gpointer) va_string);
210         }
211         va_end (list);
212
213         for (node = tags_list; node != NULL; node = g_slist_next (node)) {
214
215                 tag_table = g_hash_table_lookup (priv->tags_table, node->data);
216                 if (tag_table == NULL)
217                         tag_table = modest_protocol_registry_create_tag (self, node->data);
218                 g_hash_table_insert (tag_table, GINT_TO_POINTER (modest_protocol_get_type_id (protocol)), g_object_ref (protocol));
219         }
220         g_slist_free (tags_list);
221 }
222
223 GSList *
224 modest_protocol_registry_get_all (ModestProtocolRegistry *self)
225 {
226         ModestProtocolRegistryPrivate *priv;
227
228         g_return_val_if_fail (MODEST_IS_PROTOCOL_REGISTRY (self), NULL);
229         priv = MODEST_PROTOCOL_REGISTRY_GET_PRIVATE (self);
230
231         return modest_protocol_registry_get_by_tag (self, TAG_ALL_PROTOCOLS);
232         
233 }
234
235 static void
236 add_protocol_to_list (ModestProtocolType key, ModestProtocol *protocol, GSList **list)
237 {
238         *list = g_slist_prepend (*list, protocol);
239 }
240
241 static gint
242 compare_protocols (ModestProtocol *a, ModestProtocol *b, GHashTable *priorities)
243 {
244         ModestProtocolType a_type, b_type;
245         gint result;
246
247         a_type = modest_protocol_get_type_id (a);
248         b_type = modest_protocol_get_type_id (b);
249
250         result = g_hash_table_lookup (priorities, GINT_TO_POINTER (a_type)) - g_hash_table_lookup (priorities, GINT_TO_POINTER (b_type));
251         if (result == 0) {
252                 const gchar *a_display_name;
253                 const gchar *b_display_name;
254
255                 a_display_name = modest_protocol_get_display_name (a);
256                 b_display_name = modest_protocol_get_display_name (b);
257                 result = g_utf8_collate (a_display_name, b_display_name);
258         }
259         return result;
260 }
261
262 GSList *
263 modest_protocol_registry_get_by_tag (ModestProtocolRegistry *self, const gchar *tag)
264 {
265         ModestProtocolRegistryPrivate *priv;
266         GHashTable *tag_table;
267         GSList *result;
268
269         g_return_val_if_fail (MODEST_IS_PROTOCOL_REGISTRY (self), NULL);
270         priv = MODEST_PROTOCOL_REGISTRY_GET_PRIVATE (self);
271
272         tag_table = g_hash_table_lookup (priv->tags_table, tag);
273         if (tag_table == NULL) {
274                 return NULL;
275         }
276
277         result = NULL;
278         g_hash_table_foreach (tag_table, (GHFunc) add_protocol_to_list, &result);
279
280         result = g_slist_sort_with_data (result, (GCompareDataFunc) compare_protocols, priv->priorities);
281
282         return result;
283
284 }
285
286 static void
287 add_protocol_to_pair_list (ModestProtocolType type_id, ModestProtocol *protocol, GSList **list)
288 {
289         *list = g_slist_append (*list,
290                                 (gpointer) modest_pair_new (
291                                         (gpointer) modest_protocol_get_name (protocol),
292                                         (gpointer) modest_protocol_get_display_name (protocol),
293                                         FALSE));
294 }
295
296 ModestPairList *
297 modest_protocol_registry_get_pair_list_by_tag (ModestProtocolRegistry *self, const gchar *tag)
298 {
299         ModestProtocolRegistryPrivate *priv;
300         GHashTable *tag_table;
301         GSList *result;
302
303         g_return_val_if_fail (MODEST_IS_PROTOCOL_REGISTRY (self), NULL);
304         priv = MODEST_PROTOCOL_REGISTRY_GET_PRIVATE (self);
305
306         tag_table = g_hash_table_lookup (priv->tags_table, tag);
307         if (tag_table == NULL) {
308                 return NULL;
309         }
310
311         g_hash_table_foreach (tag_table, (GHFunc) add_protocol_to_pair_list, &result);
312
313         return result;  
314 }
315
316 static gboolean
317 find_protocol_by_name (ModestProtocolType type_id,
318                        ModestProtocol *protocol,
319                        const gchar *name)
320 {
321         return (strcmp (name, modest_protocol_get_name (protocol)) == 0);
322 }
323
324 ModestProtocol *
325 modest_protocol_registry_get_protocol_by_name (ModestProtocolRegistry *self, 
326                                                const gchar *tag, 
327                                                const gchar *name)
328 {
329         ModestProtocolRegistryPrivate *priv;
330         GHashTable *tag_table;
331
332         g_return_val_if_fail (MODEST_IS_PROTOCOL_REGISTRY (self), NULL);
333         g_return_val_if_fail (tag, NULL);
334         g_return_val_if_fail (name, NULL);
335
336         priv = MODEST_PROTOCOL_REGISTRY_GET_PRIVATE (self);
337
338         tag_table = g_hash_table_lookup (priv->tags_table, tag);
339         if (tag_table == NULL) {
340                 return NULL;
341         }
342         
343         return g_hash_table_find (tag_table, (GHRFunc) find_protocol_by_name, (gpointer) name);
344 }
345
346 ModestProtocol *
347 modest_protocol_registry_get_protocol_by_type (ModestProtocolRegistry *self, ModestProtocolType type_id)
348 {
349         ModestProtocolRegistryPrivate *priv;
350         GHashTable *tag_table;
351
352         g_return_val_if_fail (MODEST_IS_PROTOCOL_REGISTRY (self), NULL);
353         priv = MODEST_PROTOCOL_REGISTRY_GET_PRIVATE (self);
354
355         tag_table = g_hash_table_lookup (priv->tags_table, TAG_ALL_PROTOCOLS);
356         if (tag_table == NULL) {
357                 return NULL;
358         }
359         
360         return g_hash_table_lookup (tag_table, GINT_TO_POINTER (type_id));
361 }
362
363 gboolean 
364 modest_protocol_registry_protocol_type_has_tag (ModestProtocolRegistry *self, ModestProtocolType type_id, const gchar *tag)
365 {
366         ModestProtocolRegistryPrivate *priv;
367         GHashTable *tag_table;
368
369         g_return_val_if_fail (MODEST_IS_PROTOCOL_REGISTRY (self), FALSE);
370         g_return_val_if_fail (tag != NULL, FALSE);
371         priv = MODEST_PROTOCOL_REGISTRY_GET_PRIVATE (self);
372
373         tag_table = g_hash_table_lookup (priv->tags_table, tag);
374         if (tag_table == NULL) {
375                 return FALSE;
376         }
377         
378         return (g_hash_table_lookup (tag_table, GINT_TO_POINTER (type_id))!= NULL);
379         
380 }
381
382 static GHashTable *
383 modest_protocol_registry_create_tag (ModestProtocolRegistry *self, const gchar *tag)
384 {
385         ModestProtocolRegistryPrivate *priv;
386         GHashTable *tag_table;
387
388         g_assert (tag != NULL);
389         priv = MODEST_PROTOCOL_REGISTRY_GET_PRIVATE (self);
390         tag_table = g_hash_table_new_full (g_direct_hash, g_direct_equal, 
391                                            NULL, g_object_unref);
392         g_hash_table_insert (priv->tags_table, g_strdup (tag), tag_table);
393
394         return tag_table;
395 }
396
397 static gchar * 
398 translation_is_userdata (gpointer userdata, va_list args)
399 {
400         va_list dest;
401         gchar *result;
402
403         G_VA_COPY (dest, args);
404         result = g_strdup_vprintf (_(userdata), dest);
405         va_end (dest);
406
407         return result;
408 }
409
410 static gchar * 
411 translation_is_userdata_no_param (gpointer userdata, va_list args)
412 {
413         gchar *result;
414
415         result = g_strdup (_(userdata));
416
417         return result;
418 }
419
420
421 void 
422 modest_protocol_registry_set_to_default (ModestProtocolRegistry *self)
423 {
424         ModestProtocol *protocol;
425         TnyList *account_options;
426         TnyPair *pair;
427
428         protocol = modest_account_protocol_new ("sendmail", N_("Sendmail"),
429                                                 0, 0,
430                                                 TNY_TYPE_CAMEL_TRANSPORT_ACCOUNT);
431         sendmail_protocol_type_id = modest_protocol_get_type_id (protocol);
432         modest_protocol_registry_add (self, protocol, 1,
433                                       MODEST_PROTOCOL_REGISTRY_TRANSPORT_STORE_PROTOCOLS,
434                                       MODEST_PROTOCOL_REGISTRY_TRANSPORT_PROTOCOLS,
435                                       NULL);
436         g_object_unref (protocol);
437
438         protocol = modest_account_protocol_new ("smtp", N_("SMTP Server"),
439                                                 25, 465,
440                                                 TNY_TYPE_CAMEL_TRANSPORT_ACCOUNT);
441         smtp_protocol_type_id = modest_protocol_get_type_id (protocol);
442         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_CONNECT_ERROR, translation_is_userdata, "emev_ib_ui_smtp_server_invalid", NULL);
443         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_AUTH_ERROR, translation_is_userdata, "emev_ni_ui_smtp_authentication_fail_error", NULL);
444         modest_protocol_registry_add (self, protocol, 2,
445                                       MODEST_PROTOCOL_REGISTRY_TRANSPORT_STORE_PROTOCOLS,
446                                       MODEST_PROTOCOL_REGISTRY_TRANSPORT_PROTOCOLS,
447                                       NULL);
448         g_object_unref (protocol);
449
450         protocol = modest_account_protocol_new ("pop", _("mail_fi_emailtype_pop3"),
451                                                 110, 995,
452                                                 TNY_TYPE_CAMEL_POP_STORE_ACCOUNT);
453         pop_protocol_type_id = modest_protocol_get_type_id (protocol);
454         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_CONNECT_ERROR, translation_is_userdata, "emev_ni_ui_pop3_msg_connect_error", NULL);
455         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_AUTH_ERROR, translation_is_userdata, "emev_ni_ui_pop3_msg_connect_error", NULL);
456         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_ACCOUNT_CONNECTION_ERROR, translation_is_userdata, "emev_ni_ui_pop3_msg_connect_error", NULL);
457         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_MSG_NOT_AVAILABLE, translation_is_userdata_no_param, "emev_ni_ui_pop3_msg_recv_error", NULL);
458         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_SSL_PROTO_NAME, translation_is_userdata_no_param, "mcen_fi_advsetup_other_security_securepop3s", NULL);
459         modest_protocol_registry_add (self, protocol, 3,
460                                       MODEST_PROTOCOL_REGISTRY_TRANSPORT_STORE_PROTOCOLS,
461                                       MODEST_PROTOCOL_REGISTRY_STORE_PROTOCOLS,
462                                       MODEST_PROTOCOL_REGISTRY_REMOTE_STORE_PROTOCOLS,
463                                       MODEST_PROTOCOL_REGISTRY_HAS_LEAVE_ON_SERVER_PROTOCOLS,
464                                       MODEST_PROTOCOL_REGISTRY_STORE_FORBID_MESSAGE_ADD,
465                                       NULL);
466         g_object_unref (protocol);
467
468         protocol = modest_account_protocol_new ("imap", _("mail_fi_emailtype_imap"),
469                                                 143, 993,
470                                                 TNY_TYPE_CAMEL_IMAP_STORE_ACCOUNT);
471         imap_protocol_type_id = modest_protocol_get_type_id (protocol);
472         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_DELETE_MAILBOX, translation_is_userdata, "emev_nc_delete_mailboximap", NULL);
473         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_CONNECT_ERROR, translation_is_userdata, "emev_ni_ui_imap_connect_server_error", NULL);
474         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_AUTH_ERROR, translation_is_userdata, "emev_ni_ui_imap_connect_server_error", NULL);
475         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_ACCOUNT_CONNECTION_ERROR, translation_is_userdata, "emev_ni_ui_imap_connect_server_error", NULL);
476         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_MSG_NOT_AVAILABLE, translation_is_userdata, "emev_ni_ui_imap_message_not_available_in_server", NULL);
477         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_SSL_PROTO_NAME, translation_is_userdata_no_param, "mcen_fi_advsetup_other_security_secureimap4s", NULL);
478         account_options = tny_simple_list_new ();
479         pair = tny_pair_new (MODEST_ACCOUNT_OPTION_USE_LSUB, "");
480         tny_list_append (account_options, G_OBJECT (pair));
481         g_object_unref (pair);
482         pair = tny_pair_new (MODEST_ACCOUNT_OPTION_CHECK_ALL, "");
483         tny_list_append (account_options, G_OBJECT (pair));
484         g_object_unref (pair);
485         modest_account_protocol_set_account_options (MODEST_ACCOUNT_PROTOCOL (protocol), account_options);
486         g_object_unref (account_options);
487         modest_protocol_registry_add (self, protocol, 4,
488                                       MODEST_PROTOCOL_REGISTRY_TRANSPORT_STORE_PROTOCOLS,
489                                       MODEST_PROTOCOL_REGISTRY_STORE_PROTOCOLS,
490                                       MODEST_PROTOCOL_REGISTRY_REMOTE_STORE_PROTOCOLS,
491                                       MODEST_PROTOCOL_REGISTRY_STORE_HAS_FOLDERS,
492                                       NULL);
493         g_object_unref (protocol);
494
495         protocol = modest_account_protocol_new ("maildir", N_("Maildir"),
496                                                 0, 0,
497                                                 TNY_TYPE_CAMEL_STORE_ACCOUNT);
498         maildir_protocol_type_id = modest_protocol_get_type_id (protocol);
499         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_ACCOUNT_CONNECTION_ERROR, 
500                                          translation_is_userdata_no_param, "emev_nc_mailbox_notavailable", NULL);
501         modest_protocol_registry_add (self, protocol, 5, 
502                                       MODEST_PROTOCOL_REGISTRY_TRANSPORT_STORE_PROTOCOLS,
503                                       MODEST_PROTOCOL_REGISTRY_STORE_PROTOCOLS,
504                                       MODEST_PROTOCOL_REGISTRY_LOCAL_STORE_PROTOCOLS,
505                                       MODEST_PROTOCOL_REGISTRY_STORE_HAS_FOLDERS,
506                                       NULL);
507         g_object_unref (protocol);
508
509         protocol = modest_account_protocol_new ("mbox", N_("MBox"),
510                                                 0, 0,
511                                                 TNY_TYPE_CAMEL_STORE_ACCOUNT);
512         mbox_protocol_type_id = modest_protocol_get_type_id (protocol);
513         modest_protocol_set_translation (protocol, MODEST_PROTOCOL_TRANSLATION_ACCOUNT_CONNECTION_ERROR, 
514                                          translation_is_userdata_no_param, "emev_nc_mailbox_notavailable", NULL);
515         modest_protocol_registry_add (self, protocol, 6,
516                                       MODEST_PROTOCOL_REGISTRY_TRANSPORT_STORE_PROTOCOLS,
517                                       MODEST_PROTOCOL_REGISTRY_STORE_PROTOCOLS,
518                                       MODEST_PROTOCOL_REGISTRY_LOCAL_STORE_PROTOCOLS,
519                                       MODEST_PROTOCOL_REGISTRY_STORE_HAS_FOLDERS,
520                                       NULL);
521         g_object_unref (protocol);
522
523         protocol = modest_protocol_new ("none", N_("None"));
524         modest_protocol_set (protocol, MODEST_PROTOCOL_SECURITY_ACCOUNT_OPTION, MODEST_ACCOUNT_OPTION_SSL_NEVER);
525         none_connection_protocol_type_id = modest_protocol_get_type_id (protocol);
526         modest_protocol_registry_add (self, protocol, 7,
527                                       MODEST_PROTOCOL_REGISTRY_CONNECTION_PROTOCOLS,
528                                       NULL);
529         g_object_unref (protocol);
530
531         protocol = modest_protocol_new ("ssl", N_("SSL"));
532         modest_protocol_set (protocol, MODEST_PROTOCOL_SECURITY_ACCOUNT_OPTION, MODEST_ACCOUNT_OPTION_SSL_WRAPPED);
533         ssl_connection_protocol_type_id = modest_protocol_get_type_id (protocol);
534         modest_protocol_registry_add (self, protocol, 8,
535                                       MODEST_PROTOCOL_REGISTRY_CONNECTION_PROTOCOLS,
536                                       MODEST_PROTOCOL_REGISTRY_SECURE_PROTOCOLS,
537                                       MODEST_PROTOCOL_REGISTRY_USE_ALTERNATE_PORT,
538                                       NULL);
539         g_object_unref (protocol);
540
541         protocol = modest_protocol_new ("tls", N_("TLS"));
542         modest_protocol_set (protocol, MODEST_PROTOCOL_SECURITY_ACCOUNT_OPTION, MODEST_ACCOUNT_OPTION_SSL_TLS);
543         tls_connection_protocol_type_id = modest_protocol_get_type_id (protocol);
544         modest_protocol_registry_add (self, protocol, 9, 
545                                       MODEST_PROTOCOL_REGISTRY_CONNECTION_PROTOCOLS,
546                                       MODEST_PROTOCOL_REGISTRY_SECURE_PROTOCOLS,
547                                       NULL);
548         g_object_unref (protocol);
549
550         protocol = modest_protocol_new ("tls-op", N_("TLS when possible"));
551         modest_protocol_set (protocol, MODEST_PROTOCOL_SECURITY_ACCOUNT_OPTION, MODEST_ACCOUNT_OPTION_SSL_WHEN_POSSIBLE);
552         tlsop_connection_protocol_type_id = modest_protocol_get_type_id (protocol);
553         modest_protocol_registry_add (self, protocol, 10,
554                                       MODEST_PROTOCOL_REGISTRY_CONNECTION_PROTOCOLS,
555                                       MODEST_PROTOCOL_REGISTRY_SECURE_PROTOCOLS,
556                                       NULL);
557         g_object_unref (protocol);
558
559         protocol = modest_protocol_new (MODEST_ACCOUNT_AUTH_MECH_VALUE_NONE, _("mcen_fi_advsetup_smtp_none"));
560         none_auth_protocol_type_id = modest_protocol_get_type_id (protocol);
561         modest_protocol_set (protocol, MODEST_PROTOCOL_AUTH_ACCOUNT_OPTION, MODEST_ACCOUNT_AUTH_PLAIN);
562         modest_protocol_registry_add (self, protocol, 11,
563                                       MODEST_PROTOCOL_REGISTRY_AUTH_PROTOCOLS,
564                                       NULL);
565         g_object_unref (protocol);
566
567         protocol = modest_protocol_new (MODEST_ACCOUNT_AUTH_MECH_VALUE_PASSWORD, _("mcen_fi_advsetup_smtp_login"));
568         password_auth_protocol_type_id = modest_protocol_get_type_id (protocol);
569         modest_protocol_set (protocol, MODEST_PROTOCOL_AUTH_ACCOUNT_OPTION, MODEST_ACCOUNT_AUTH_PASSWORD);
570         modest_protocol_registry_add (self, protocol, 12,
571                                       MODEST_PROTOCOL_REGISTRY_AUTH_PROTOCOLS,
572                                       MODEST_PROTOCOL_REGISTRY_SECURE_PROTOCOLS,
573                                       NULL);
574         g_object_unref (protocol);
575
576         protocol = modest_protocol_new (MODEST_ACCOUNT_AUTH_MECH_VALUE_CRAMMD5, _("mcen_fi_advsetup_smtp_cram_md5"));
577         crammd5_auth_protocol_type_id = modest_protocol_get_type_id (protocol);
578         modest_protocol_set (protocol, MODEST_PROTOCOL_AUTH_ACCOUNT_OPTION, MODEST_ACCOUNT_AUTH_CRAMMD5);
579         modest_protocol_registry_add (self, protocol, 13,
580                                       MODEST_PROTOCOL_REGISTRY_AUTH_PROTOCOLS,
581                                       MODEST_PROTOCOL_REGISTRY_SECURE_PROTOCOLS,
582                                       NULL);
583         g_object_unref (protocol);
584
585         /* set the custom auth mechs. We do this after creating all the protocols, because if we don't, then we
586          * won't register the auth protocol type id's properly */
587
588         /* IMAP and POP need at least a password,
589          * which camel uses if we specify NULL.
590          * Camel use a password for IMAP or POP if we specify NULL,
591          * For IMAP, at least it will report an error if we use "Password", "Login" or "Plain".
592          * (POP is know to report an error for Login too. Probably Password and Plain too.) */
593         protocol = modest_protocol_registry_get_protocol_by_type (self, MODEST_PROTOCOLS_STORE_IMAP);
594         modest_account_protocol_set_custom_secure_auth_mech (MODEST_ACCOUNT_PROTOCOL (protocol), MODEST_PROTOCOLS_AUTH_NONE, NULL);
595         modest_account_protocol_set_custom_secure_auth_mech (MODEST_ACCOUNT_PROTOCOL (protocol), MODEST_PROTOCOLS_AUTH_PASSWORD, NULL);
596         protocol = modest_protocol_registry_get_protocol_by_type (self, MODEST_PROTOCOLS_STORE_POP);
597         modest_account_protocol_set_custom_secure_auth_mech (MODEST_ACCOUNT_PROTOCOL (protocol), MODEST_PROTOCOLS_AUTH_NONE, NULL);
598         modest_account_protocol_set_custom_secure_auth_mech (MODEST_ACCOUNT_PROTOCOL (protocol), MODEST_PROTOCOLS_AUTH_PASSWORD, NULL);
599 }
600
601 ModestProtocolType
602 modest_protocol_registry_get_imap_type_id (void)
603 {
604         return imap_protocol_type_id;
605 }
606
607 ModestProtocolType 
608 modest_protocol_registry_get_pop_type_id (void)
609 {
610         return pop_protocol_type_id;
611 }
612
613 ModestProtocolType
614 modest_protocol_registry_get_maildir_type_id (void)
615 {
616         return maildir_protocol_type_id;
617 }
618
619 ModestProtocolType
620 modest_protocol_registry_get_mbox_type_id (void)
621 {
622         return mbox_protocol_type_id;
623 }
624
625 ModestProtocolType 
626 modest_protocol_registry_get_smtp_type_id (void)
627 {
628         return smtp_protocol_type_id;
629 }
630
631 ModestProtocolType 
632 modest_protocol_registry_get_sendmail_type_id (void)
633 {
634         return sendmail_protocol_type_id;
635 }
636
637 ModestProtocolType 
638 modest_protocol_registry_get_none_connection_type_id (void)
639 {
640         return none_connection_protocol_type_id;
641 }
642
643 ModestProtocolType 
644 modest_protocol_registry_get_ssl_connection_type_id (void)
645 {
646         return ssl_connection_protocol_type_id;
647 }
648
649 ModestProtocolType 
650 modest_protocol_registry_get_tls_connection_type_id (void)
651 {
652         return tls_connection_protocol_type_id;
653 }
654
655 ModestProtocolType 
656 modest_protocol_registry_get_tlsop_connection_type_id (void)
657 {
658         return tlsop_connection_protocol_type_id;
659 }
660
661 ModestProtocolType 
662 modest_protocol_registry_get_none_auth_type_id (void)
663 {
664         return none_auth_protocol_type_id;
665 }
666
667 ModestProtocolType 
668 modest_protocol_registry_get_password_auth_type_id (void)
669 {
670         return password_auth_protocol_type_id;
671 }
672
673 ModestProtocolType 
674 modest_protocol_registry_get_crammd5_auth_type_id (void)
675 {
676         return crammd5_auth_protocol_type_id;
677 }
678