AC_SUBST(SOLIPA_CFLAGS)
AC_SUBST(SOLIPA_LIBS)
-PKG_CHECK_MODULES(CAMEL, camel-1.2 >= 3.8, [camel38_found=yes], [camel38_found=no])
-
camel3_found=no
-if test x$camel38_found = xno; then
- PKG_CHECK_MODULES(CAMEL, camel-provider-1.2 >= 3, [camel3_found=yes], [camel3_found=no])
-
- if test x$camel3_found = xno; then
- PKG_CHECK_MODULES(CAMEL, camel-provider-1.2 >= 2.32)
- fi
- CAMEL_PKGCONFIG="camel-provider-1.2"
-else
- CAMEL_PKGCONFIG="camel-1.2"
+camel38_found=no
+camel318_found=no
+
+PKG_CHECK_MODULES(CAMEL, camel-1.2 >= 3.18, [camel318_found=yes], [camel318_found=no])
+
+if test x$camel318_found = xno; then
+ PKG_CHECK_MODULES(CAMEL, camel-1.2 >= 3.8, [camel38_found=yes], [camel38_found=no])
+
+ if test x$camel38_found = xno; then
+ PKG_CHECK_MODULES(CAMEL, camel-provider-1.2 >= 3, [camel3_found=yes], [camel3_found=no])
+
+ if test x$camel3_found = xno; then
+ PKG_CHECK_MODULES(CAMEL, camel-provider-1.2 >= 2.32)
+ fi
+
+ CAMEL_PKGCONFIG="camel-provider-1.2"
+ else
+ CAMEL_PKGCONFIG="camel-1.2"
+ fi
fi
AC_SUBST(CAMEL_CFLAGS)
AC_SUBST(CAMEL_LIBS)
+AC_SUBST(CAMEL318_FOUND)
+AM_CONDITIONAL(HAVE_CAMEL318, test $camel318_found = yes)
AC_SUBST(CAMEL38_FOUND)
AM_CONDITIONAL(HAVE_CAMEL38, test $camel38_found = yes)
AC_SUBST(CAMEL3_FOUND)
$(CAMEL_LIBS) \
$(WIN32_LIBS)
-if HAVE_CAMEL38
-CAMEL3=-DCAMEL3=\"yes\" -DCAMEL38=\"yes\"
+if HAVE_CAMEL318
+ CAMEL3=-DCAMEL3=\"yes\" -DCAMEL318=\"yes\"
else
-if HAVE_CAMEL3
-CAMEL3=-DCAMEL3=\"yes\"
-else
-CAMEL3=
-endif
+ if HAVE_CAMEL38
+ CAMEL3=-DCAMEL3=\"yes\" -DCAMEL38=\"yes\"
+ else
+ if HAVE_CAMEL3
+ CAMEL3=-DCAMEL3=\"yes\"
+ else
+ CAMEL3=
+ endif
+ endif
endif
AM_CPPFLAGS = $(SOLIPA_CFLAGS) \
/*
- * Copyright (C) 2010-2014 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2015 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
priv->security_method = method;
}
-void
+void
solipa_mail_set_username_password (SolipaMail *mail, const gchar *username, const gchar *password)
{
SolipaMailPrivate *priv;
}
error = NULL;
-#ifdef CAMEL38
+#ifdef CAMEL318
+ ret = camel_service_connect_sync (trans, NULL, &error);
+#elif defined CAMEL38
ret = camel_service_connect_sync (trans, NULL, &error);
#elif defined CAMEL3
ret = camel_service_connect_sync (trans, &error);
}
#ifdef CAMEL3
+#ifdef CAMEL318
+ gboolean out_sent_message_saved;
+
+ out_sent_message_saved = FALSE;
+ ret = camel_transport_send_to_sync (CAMEL_TRANSPORT (trans),
+ msg,
+ CAMEL_ADDRESS (camel_mime_message_get_from (msg)),
+ CAMEL_ADDRESS (to),
+ &out_sent_message_saved,
+ NULL,
+ &error);
+#else
ret = camel_transport_send_to_sync (CAMEL_TRANSPORT (trans),
msg,
CAMEL_ADDRESS (camel_mime_message_get_from (msg)),
CAMEL_ADDRESS (to),
NULL,
&error);
+#endif
#else
ret = camel_transport_send_to (CAMEL_TRANSPORT (trans),
msg,
#include <camel/camel.h>
+#include <libgdaex/gdaex.h>
+
G_BEGIN_DECLS