diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-04-13 22:30:40 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-06-03 11:00:40 +0800 |
commit | 3449e5fcc7f9c797fcde7f2a444b1eb7a934cd81 (patch) | |
tree | ff59febf4ac0c6316ef344ea25cee002088bd314 /mail/test-mail-autoconfig.c | |
parent | f78795f4dff8b225d78385c5e23e1cd44ee946ad (diff) | |
download | gsoc2013-evolution-3449e5fcc7f9c797fcde7f2a444b1eb7a934cd81.tar.gz gsoc2013-evolution-3449e5fcc7f9c797fcde7f2a444b1eb7a934cd81.tar.zst gsoc2013-evolution-3449e5fcc7f9c797fcde7f2a444b1eb7a934cd81.zip |
Adapt mail to the new ESource API.
Diffstat (limited to 'mail/test-mail-autoconfig.c')
-rw-r--r-- | mail/test-mail-autoconfig.c | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/mail/test-mail-autoconfig.c b/mail/test-mail-autoconfig.c new file mode 100644 index 0000000000..10977a17b2 --- /dev/null +++ b/mail/test-mail-autoconfig.c @@ -0,0 +1,53 @@ +/* + * test-mail-autoconfig.c + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with the program; if not, see <http://www.gnu.org/licenses/> + * + */ + +#include <stdlib.h> + +#include "e-mail-autoconfig.h" + +gint +main (gint argc, + gchar **argv) +{ + EMailAutoconfig *autoconfig; + GError *error = NULL; + + g_type_init (); + + if (argc < 2) { + g_printerr ("USAGE: %s EMAIL-ADDRESS\n", argv[0]); + exit (EXIT_FAILURE); + } + + autoconfig = e_mail_autoconfig_new_sync (argv[1], NULL, &error); + + if (error != NULL) { + g_warn_if_fail (autoconfig == NULL); + g_printerr ("%s\n", error->message); + g_error_free (error); + exit (EXIT_FAILURE); + } + + g_assert (E_IS_MAIL_AUTOCONFIG (autoconfig)); + + g_print ("%s\n", e_mail_autoconfig_get_markup_content (autoconfig)); + + g_object_unref (autoconfig); + + return EXIT_SUCCESS; +} |