4 files changed, 7 insertions(+), 76 deletions(-)
diff --git a/configure.ac b/configure.ac
-index cab6619..65f87a2 100644
+index 61e834d..181a175 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,7 +32,7 @@ AC_PROG_RANLIB
@@ -44,45 +44,13 @@ PKG_CHECK_MODULES(SOLIPA, [libgdaex >= 0.5.0
gio-2.0 >= 2.32
gtk+-3.0 >= 3.0
- libzakutils
-- libzakformgtk])
-+ libzakformgtk
-+ camel-1.2])
+ libzakutils
+- libzakformgtk])
++ libzakformgtk
++ camel-1.2])
AC_SUBST(SOLIPA_CFLAGS)
AC_SUBST(SOLIPA_LIBS)
\ No newline at end of file
+}
diff --git a/src/mail.c b/src/mail.c
-index 72f56c0..1bcfcc5 100644
+index 435046b..522e06f 100644
--- a/src/mail.c
+++ b/src/mail.c
-@@ -400,20 +400,10 @@ static CamelMimeMessage
+@@ -403,20 +403,10 @@ static CamelMimeMessage
camel_data_wrapper_set_mime_type (dw, g_content_type_get_mime_type (g_file_info_get_content_type (file_info)));
error = NULL;
part = camel_mime_part_new ();
#if defined CAMEL38 || defined CAMEL3
-@@ -676,7 +666,7 @@ solipa_mail_send (SolipaMail *mail, const gchar *url)
+@@ -705,7 +695,7 @@ solipa_mail_send (SolipaMail *mail, const gchar *url)
error != NULL && error->message != NULL ? error->message : "no details");
return;
}
camel_network_settings_set_host (CAMEL_NETWORK_SETTINGS (settings), camel_url->host);
camel_network_settings_set_user (CAMEL_NETWORK_SETTINGS (settings), "");
if (camel_url->port == 0)
-@@ -713,15 +703,7 @@ solipa_mail_send (SolipaMail *mail, const gchar *url)
- }
+@@ -761,15 +751,7 @@ solipa_mail_send (SolipaMail *mail, const gchar *url)
+ camel_service_set_proxy_resolver (trans, proxy_resolver);
error = NULL;
-#ifdef CAMEL318
if (!ret || error != NULL)
{
g_warning ("Not connected: %s",
-@@ -793,13 +775,7 @@ solipa_mail_send (SolipaMail *mail, const gchar *url)
+@@ -841,13 +823,7 @@ solipa_mail_send (SolipaMail *mail, const gchar *url)
g_object_unref (to);
error = NULL;
--- /dev/null
+From: Andrea Zagli <azagli@libero.it>
+Date: Wed, 14 Dec 2016 16:41:24 +0100
+Subject: No gio/camel proxy.
+
+---
+ src/mail.c | 50 --------------------------------------------------
+ src/mail.h | 2 --
+ src/mailui.c | 1 -
+ tests/mail.c | 2 --
+ 4 files changed, 55 deletions(-)
+
+diff --git a/src/mail.c b/src/mail.c
+index 522e06f..e90bfa7 100644
+--- a/src/mail.c
++++ b/src/mail.c
+@@ -61,9 +61,6 @@ struct _SolipaMailPrivate
+ gchar *username;
+ gchar *password;
+
+- GProxyResolver *proxy_resolver;
+- gchar *proxy_uri;
+-
+ gchar *body_plain;
+ gchar *body_html;
+
+@@ -571,32 +568,6 @@ solipa_mail_set_username_password (SolipaMail *mail, const gchar *username, cons
+ }
+
+ void
+-solipa_mail_set_proxy (SolipaMail *mail, GProxyResolver *resolver, const gchar *uri)
+-{
+- SolipaMailPrivate *priv;
+-
+- g_return_if_fail (IS_SOLIPA_MAIL (mail));
+-
+- priv = SOLIPA_MAIL_GET_PRIVATE (mail);
+-
+- priv->proxy_resolver = NULL;
+- if (priv->proxy_uri != NULL)
+- {
+- g_free (priv->proxy_uri);
+- }
+- priv->proxy_uri = NULL;
+-
+- if (uri != NULL)
+- {
+- priv->proxy_uri = g_strdup (uri);
+- }
+- else if (G_IS_PROXY_RESOLVER (resolver))
+- {
+- priv->proxy_resolver = resolver;
+- }
+-}
+-
+-void
+ solipa_mail_send (SolipaMail *mail, const gchar *url)
+ {
+ SolipaMailPrivate *priv;
+@@ -606,8 +577,6 @@ solipa_mail_send (SolipaMail *mail, const gchar *url)
+
+ CamelMimeMessage *msg;
+
+- GProxyResolver *proxy_resolver;
+-
+ CamelInternetAddress *from;
+ CamelInternetAddress *addr;
+ CamelInternetAddress *to;
+@@ -731,25 +700,6 @@ solipa_mail_send (SolipaMail *mail, const gchar *url)
+ return;
+ }
+
+- /* proxy */
+- if (priv->proxy_resolver != NULL
+- || priv->proxy_uri != NULL)
+- {
+- if (priv->proxy_resolver != NULL)
+- {
+- proxy_resolver = priv->proxy_resolver;
+- }
+- else
+- {
+- proxy_resolver = g_simple_proxy_resolver_new (priv->proxy_uri, NULL);
+- }
+- }
+- else
+- {
+- proxy_resolver = g_simple_proxy_resolver_new (NULL, NULL);
+- }
+- camel_service_set_proxy_resolver (trans, proxy_resolver);
+-
+ error = NULL;
+ ret = camel_service_connect_sync (trans, &error);
+ if (!ret || error != NULL)
+diff --git a/src/mail.h b/src/mail.h
+index 8a195da..592ade5 100644
+--- a/src/mail.h
++++ b/src/mail.h
+@@ -80,8 +80,6 @@ void solipa_mail_set_security_method (SolipaMail *mail, CamelNetworkSecurityMeth
+
+ void solipa_mail_set_username_password (SolipaMail *mail, const gchar *username, const gchar *password);
+
+-void solipa_mail_set_proxy (SolipaMail *mail, GProxyResolver *resolver, const gchar *uri);
+-
+ void solipa_mail_send (SolipaMail *mail, const gchar *url);
+
+ gboolean solipa_mail_check_email_address (const gchar *address);
+diff --git a/src/mailui.c b/src/mailui.c
+index 81f707f..925b0c9 100644
+--- a/src/mailui.c
++++ b/src/mailui.c
+@@ -790,7 +790,6 @@ solipa_mail_ui_send (SolipaMailUI *mailui)
+ {
+ if (g_strcmp0 (proxy, "") != 0)
+ {
+- solipa_mail_set_proxy (smail, NULL, proxy);
+ }
+ solipa_mail_send (smail, smtpuri);
+ }
+diff --git a/tests/mail.c b/tests/mail.c
+index f61ae1f..af30f81 100644
+--- a/tests/mail.c
++++ b/tests/mail.c
+@@ -160,8 +160,6 @@ main (int argc, char **argv)
+ solipa_mail_set_username_password (smail, username, password);
+ }
+
+- solipa_mail_set_proxy (smail, NULL, proxy);
+-
+ solipa_mail_send (smail, url);
+
+ return 0;