diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-10-11 10:06:59 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-10-12 00:11:57 +0800 |
commit | 1ed5b89c02656c9172957980c85e412a27b2e6a2 (patch) | |
tree | b21f43ddf9e30481c65d18351b31e317d2a98db1 /modules/online-accounts/evolution-online-accounts.c | |
parent | 1166789bd6993dfa02c06b0863047617e97fca34 (diff) | |
download | gsoc2013-evolution-1ed5b89c02656c9172957980c85e412a27b2e6a2.tar.gz gsoc2013-evolution-1ed5b89c02656c9172957980c85e412a27b2e6a2.tar.zst gsoc2013-evolution-1ed5b89c02656c9172957980c85e412a27b2e6a2.zip |
Prototype CamelSaslXOAuth2.
Untested, but conforms to the specification as well as I understand it.
Diffstat (limited to 'modules/online-accounts/evolution-online-accounts.c')
-rw-r--r-- | modules/online-accounts/evolution-online-accounts.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/online-accounts/evolution-online-accounts.c b/modules/online-accounts/evolution-online-accounts.c index 9f80c93c7a..1093e6d818 100644 --- a/modules/online-accounts/evolution-online-accounts.c +++ b/modules/online-accounts/evolution-online-accounts.c @@ -17,6 +17,7 @@ */ #include "camel-sasl-xoauth.h" +#include "camel-sasl-xoauth2.h" /* Module Entry Points */ void e_module_load (GTypeModule *type_module); @@ -26,6 +27,7 @@ G_MODULE_EXPORT void e_module_load (GTypeModule *type_module) { camel_sasl_xoauth_type_register (type_module); + camel_sasl_xoauth2_type_register (type_module); } G_MODULE_EXPORT void |