fix bug 4615, 'Compilation fails with --disable-gnutls'
authorPaul <paul@claws-mail.org>
Sat, 23 Jul 2022 12:39:31 +0000 (13:39 +0100)
committerPaul <paul@claws-mail.org>
Sat, 23 Jul 2022 12:39:31 +0000 (13:39 +0100)
don't build oauth2 support when using --disable-gnutls

src/common/smtp.c
src/etpan/imap-thread.c
src/imap.c
src/inc.c
src/oauth2.c
src/oauth2.h
src/pop.c
src/prefs_account.c
src/prefs_account.h
src/send_message.c

index 7663c098dc5b5589132771c7af6928d85375e57e..b0189865309846183c256aa559804173500c4fb9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Claws Mail -- a GTK based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
+ * Copyright (C) 1999-2022 the Claws Mail team and Hiroyuki Yamamoto
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -42,11 +42,11 @@ static void smtp_session_destroy(Session *session);
 static gint smtp_auth(SMTPSession *session);
 #ifdef USE_GNUTLS
 static gint smtp_starttls(SMTPSession *session);
+static gint smtp_auth_oauth2(SMTPSession *session);
 #endif
 static gint smtp_auth_cram_md5(SMTPSession *session);
 static gint smtp_auth_login(SMTPSession *session);
 static gint smtp_auth_plain(SMTPSession *session);
-static gint smtp_auth_oauth2(SMTPSession *session);
 
 static gint smtp_ehlo(SMTPSession *session);
 static gint smtp_ehlo_recv(SMTPSession *session, const gchar *msg);
@@ -176,11 +176,13 @@ static gint smtp_auth(SMTPSession *session)
                  &&
                  (session->avail_auth_type & SMTPAUTH_PLAIN) != 0)
                smtp_auth_plain(session);
+#ifdef USE_GNUTLS
        else if ((session->forced_auth_type == SMTPAUTH_OAUTH2
                  || session->forced_auth_type == 0)
                  &&
                  (session->avail_auth_type & SMTPAUTH_OAUTH2) != 0)
                smtp_auth_oauth2(session);
+#endif
        else if (session->forced_auth_type == 0) {
                log_warning(LOG_PROTOCOL, _("No SMTP AUTH method available\n"));
                return SM_AUTHFAIL;
@@ -323,8 +325,10 @@ static gint smtp_ehlo_recv(SMTPSession *session, const gchar *msg)
                                session->avail_auth_type |= SMTPAUTH_CRAM_MD5;
                        if (strcasestr(p, "DIGEST-MD5"))
                                session->avail_auth_type |= SMTPAUTH_DIGEST_MD5;
+#ifdef USE_GNUTLS
                        if (strcasestr(p, "XOAUTH2"))
                                session->avail_auth_type |= SMTPAUTH_OAUTH2;
+#endif
                }
                if (g_ascii_strncasecmp(p, "SIZE", 4) == 0) {
                        p += 5;
@@ -399,7 +403,7 @@ static gint smtp_auth_plain(SMTPSession *session)
        return SM_OK;
 }
 
-
+#ifdef USE_GNUTLS
 static gint smtp_auth_oauth2(SMTPSession *session)
 {
        gchar buf[MESSAGEBUFSIZE], *b64buf, *out;
@@ -428,6 +432,7 @@ static gint smtp_auth_oauth2(SMTPSession *session)
 
        return SM_OK;
 }
+#endif
 
 static gint smtp_auth_login(SMTPSession *session)
 {
@@ -547,7 +552,9 @@ static gint smtp_session_recv_msg(Session *session, const gchar *msg)
        case SMTP_AUTH_PLAIN:
        case SMTP_AUTH_LOGIN_USER:
        case SMTP_AUTH_LOGIN_PASS:
+#ifdef USE_GNUTLS
         case SMTP_AUTH_OAUTH2:
+#endif
        case SMTP_AUTH_CRAM_MD5:
                log_print(LOG_PROTOCOL, "ESMTP< %s\n", msg);
                break;
@@ -670,7 +677,9 @@ static gint smtp_session_recv_msg(Session *session, const gchar *msg)
                break;
        case SMTP_AUTH_PLAIN:
        case SMTP_AUTH_LOGIN_PASS:
+#ifdef USE_GNUTLS
         case SMTP_AUTH_OAUTH2:
+#endif
        case SMTP_AUTH_CRAM_MD5:
                ret = smtp_from(smtp_session);
                break;
index a9a5453f982a635c14cadec10fd962469f48a342..78a4dbce65261f9ff10cce2cb82d8bb3e754f122 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Claws Mail -- a GTK based, lightweight, and fast e-mail client
- * Copyright (C) 2005-2016 DINH Viet Hoa and the Claws Mail team
+ * Copyright (C) 2005-2022 the Claws Mail team and DINH Viet Hoa
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -999,9 +999,11 @@ static void login_run(struct etpan_thread_op * op)
                        param->type, NULL, NULL, NULL,
                        NULL, param->login,
                        param->password, NULL);
-       else if (!strcmp(param->type, "XOAUTH2")) {
+#ifdef USE_GNUTLS
+       else if (!strcmp(param->type, "XOAUTH2"))
                 r = mailimap_oauth2_authenticate(param->imap, param->login, param->password);
-       } else
+#endif
+       else
                r = mailimap_authenticate(param->imap,
                        param->type, NULL, NULL, NULL,
                        param->login, param->login,
index 06bd6495efca6bd04820a8f04b0006a816b7077e..75494cce854e9573e7938bf37d03c26b3b2b1ea0 100644 (file)
@@ -72,7 +72,9 @@
 #include "main.h"
 #include "passwordstore.h"
 #include "file-utils.h"
+#ifdef USE_GNUTLS
 #include "oauth2.h"
+#endif
 
 typedef struct _IMAPFolder     IMAPFolder;
 typedef struct _IMAPSession    IMAPSession;
@@ -913,9 +915,11 @@ static gint imap_auth(IMAPSession *session, const gchar *user, const gchar *pass
        case IMAP_AUTH_PLAIN:
                ok = imap_cmd_login(session, user, pass, "PLAIN");
                break;
+#ifdef USE_GNUTLS
        case IMAP_AUTH_OAUTH2:
                ok = imap_cmd_login(session, user, pass, "XOAUTH2");
                break;
+#endif
        case IMAP_AUTH_LOGIN:
                ok = imap_cmd_login(session, user, pass, "LOGIN");
                break;
@@ -932,7 +936,9 @@ static gint imap_auth(IMAPSession *session, const gchar *user, const gchar *pass
                                "\t DIGEST-MD5 %d\n"
                                "\t SCRAM-SHA-1 %d\n"
                                "\t PLAIN %d\n"
+#ifdef USE_GNUTLS
                                "\t OAUTH2 %d\n"
+#endif
                                "\t LOGIN %d\n"
                                "\t GSSAPI %d\n", 
                        imap_has_capability(session, "ANONYMOUS"),
@@ -940,7 +946,9 @@ static gint imap_auth(IMAPSession *session, const gchar *user, const gchar *pass
                        imap_has_capability(session, "DIGEST-MD5"),
                        imap_has_capability(session, "SCRAM-SHA-1"),
                        imap_has_capability(session, "PLAIN"),
+#ifdef USE_GNUTLS
                        imap_has_capability(session, "XOAUTH2"),
+#endif
                        imap_has_capability(session, "LOGIN"),
                        imap_has_capability(session, "GSSAPI"));
                if (imap_has_capability(session, "CRAM-MD5"))
@@ -957,8 +965,10 @@ static gint imap_auth(IMAPSession *session, const gchar *user, const gchar *pass
                        ok = imap_cmd_login(session, user, pass, "GSSAPI");
                if (ok == MAILIMAP_ERROR_LOGIN) /* we always try plaintext login before giving up */
                        ok = imap_cmd_login(session, user, pass, "plaintext");
+#ifdef USE_GNUTLS
                if (ok == MAILIMAP_ERROR_LOGIN && imap_has_capability(session, "XOAUTH2"))
                        ok = imap_cmd_login(session, user, pass, "XOAUTH2");
+#endif
        }
 
        if (ok == MAILIMAP_NO_ERROR)
@@ -993,12 +1003,12 @@ static gint imap_auth(IMAPSession *session, const gchar *user, const gchar *pass
                                     "compiled with SASL support and the "
                                     "LOGIN SASL plugin is installed.");
                }
-
+#ifdef USE_GNUTLS
                if (type == IMAP_AUTH_OAUTH2) {
                        ext_info = _("\n\nOAuth2 error. Check and correct your OAuth2 "
                                     "account preferences.");
                } 
-
+#endif
                if (time(NULL) - last_login_err > 10) {
                        if (!prefs_common.no_recv_err_panel) {
                                alertpanel_error_log(_("Connection to %s failed: "
@@ -1320,10 +1330,10 @@ static gint imap_session_authenticate(IMAPSession *session,
        gboolean failed = FALSE;
        gint ok = MAILIMAP_NO_ERROR;
        g_return_val_if_fail(account->userid != NULL, MAILIMAP_ERROR_BAD_STATE);
-
+#ifdef USE_GNUTLS
        if(account->imap_auth_type == IMAP_AUTH_OAUTH2)
                oauth2_check_passwds (account);
-       
+#endif
        if (!password_get(account->userid, account->recv_server, "imap",
                         SESSION(session)->port, &acc_pass)) {
                acc_pass = passwd_store_get_account(account->account_id,
index e14de453ee59f7cd4895b7c8030242b7a41552ea..8e3d4927c7c392416daec74fe7727dae43cef33c 100644 (file)
--- a/src/inc.c
+++ b/src/inc.c
@@ -61,7 +61,9 @@
 #include "hooks.h"
 #include "logwindow.h"
 #include "passwordstore.h"
+#ifdef USE_GNUTLS
 #include "oauth2.h"
+#endif
 
 extern SessionStats session_stats;
 
@@ -633,11 +635,12 @@ static gint inc_start(IncProgressDialog *inc_dialog)
                        manage_window_focus_in
                                (inc_dialog->dialog->window,
                                 NULL, NULL);
-
+#ifdef USE_GNUTLS
                if(pop3_session->ac_prefs->use_pop_auth && 
                   pop3_session->ac_prefs->pop_auth_type == POPAUTH_OAUTH2)
                     oauth2_check_passwds (pop3_session->ac_prefs);
-               
+#endif
+
                if (password_get(pop3_session->user,
                                        pop3_session->ac_prefs->recv_server,
                                        "pop3", pop3_get_port(pop3_session),
index 2839702f33617f13b79f6a05d01a8eeed6bdd6b1..2c9248a248580b35f2b559aff96affc38f3f17b7 100644 (file)
@@ -22,6 +22,8 @@
 #include "claws-features.h"
 #endif
 
+#ifdef USE_GNUTLS
+
 #include <glib.h>
 #ifdef ENABLE_NLS
 #include <glib/gi18n.h>
@@ -703,3 +705,5 @@ gint oauth2_init (OAUTH2Data *OAUTH2Data)
         
         return (0);
 }
+
+#endif /* USE_GNUTLS */
index 49ff590977c8cfb1c9be9aa1026a28ca0241b2ca..ccef5677090565c1df0f111a5fa1f70c5e9c75ba 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Claws Mail -- a GTK based, lightweight, and fast e-mail client
- * Copyright (C) 2020 the Claws Mail team
+ * Copyright (C) 2020-2022 the Claws Mail team
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,6 +21,8 @@
 #include "claws-features.h"
 #endif
 
+#ifdef USE_GNUTLS
+
 #include <glib.h>
 
 #include "socket.h"
@@ -79,3 +81,5 @@ gint oauth2_authorisation_url (Oauth2Service provider, gchar **url, const gchar
 gint oauth2_use_refresh_token (Oauth2Service provider, OAUTH2Data *OAUTH2Data);
 guchar* oauth2_decode(const gchar *in);
 void oauth2_encode(const gchar *in);
+
+#endif /* USE_GNUTLS */
index b11ab4c6f0ee58938761ae7569005ab6100613dd..1117084bb4a683910013303cc529e89c7c72ea04 100644 (file)
--- a/src/pop.c
+++ b/src/pop.c
@@ -1,6 +1,6 @@
 /*
  * Claws Mail -- a GTK based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
+ * Copyright (C) 1999-2022 the Claws Mail team and Hiroyuki Yamamoto
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -178,6 +178,7 @@ static gint pop3_getauth_apop_send(Pop3Session *session)
        return PS_SUCCESS;
 }
 
+#ifdef USE_GNUTLS
 static gint pop3_getauth_oauth2_send(Pop3Session *session)
 {
        gchar buf[MESSAGEBUFSIZE], *b64buf, *out;
@@ -202,6 +203,7 @@ static gint pop3_getauth_oauth2_send(Pop3Session *session)
        g_free(out);
        return PS_SUCCESS;
 }
+#endif
 
 static gint pop3_getrange_stat_send(Pop3Session *session)
 {
@@ -533,8 +535,10 @@ static void pop3_gen_send(Pop3Session *session, const gchar *format, ...)
 
        if (!g_ascii_strncasecmp(buf, "PASS ", 5))
                log_print(LOG_PROTOCOL, "POP> PASS ********\n");
+#ifdef USE_GNUTLS
         else if  (!g_ascii_strncasecmp(buf, "AUTH XOAUTH2 ", 13))
                log_print(LOG_PROTOCOL, "POP> AUTH XOAUTH2  ********\n");
+#endif
        else
                log_print(LOG_PROTOCOL, "POP> %s\n", buf);
 
@@ -989,12 +993,12 @@ static gint pop3_session_recv_msg(Session *session, const gchar *msg)
 #ifdef USE_GNUTLS
                if (pop3_session->ac_prefs->ssl_pop == SSL_STARTTLS)
                        val = pop3_stls_send(pop3_session);
+                else if (pop3_session->ac_prefs->use_pop_auth && pop3_session->ac_prefs->pop_auth_type == POPAUTH_OAUTH2)
+                       val = pop3_getauth_oauth2_send(pop3_session);
                else
 #endif
                if (pop3_session->ac_prefs->use_pop_auth && pop3_session->ac_prefs->pop_auth_type == POPAUTH_APOP)
                        val = pop3_getauth_apop_send(pop3_session);
-                else if (pop3_session->ac_prefs->use_pop_auth && pop3_session->ac_prefs->pop_auth_type == POPAUTH_OAUTH2)
-                       val = pop3_getauth_oauth2_send(pop3_session);
                else
                        val = pop3_getauth_user_send(pop3_session);
                break;
@@ -1015,7 +1019,9 @@ static gint pop3_session_recv_msg(Session *session, const gchar *msg)
                break;
        case POP3_GETAUTH_PASS:
        case POP3_GETAUTH_APOP:
+#ifdef USE_GNUTLS
         case POP3_GETAUTH_OAUTH2:
+#endif
                if (!pop3_session->pop_before_smtp)
                        val = pop3_getrange_stat_send(pop3_session);
                else
index d5e19c23f73b363db140fb7946145d3a4d84f4c3..806645776d9c6ab89dcac306a37f1de3c31f1959 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Claws Mail -- a GTK based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2021 the Claws Mail team and Hiroyuki Yamamoto
+ * Copyright (C) 1999-2022 the Claws Mail team and Hiroyuki Yamamoto
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -61,7 +61,9 @@
 #include "smtp.h"
 #include "imap.h"
 #include "pop.h"
+#ifdef USE_GNUTLS
 #include "oauth2.h"
+#endif
 #include "remotefolder.h"
 #include "combobox.h"
 #include "setup.h"
@@ -102,9 +104,11 @@ struct AutocheckWidgets {
 
 static GSList *prefs_pages = NULL;
 
+#ifdef USE_GNUTLS
 static GTask *oauth2_listener_task;
 static int oauth2_listener_cancel = 0;
 static int oauth2_listener_closed = 0;
+#endif
 
 typedef struct BasicPage
 {
@@ -211,6 +215,7 @@ typedef struct SendPage
        GtkWidget *pop_auth_minutes_lbl;
 } SendPage;
 
+#ifdef USE_GNUTLS
 typedef struct Oauth2Page
 {
        PrefsPage page;
@@ -228,6 +233,7 @@ typedef struct Oauth2Page
        GtkWidget *oauth2_client_id_entry;
        GtkWidget *oauth2_client_secret_entry;
 } Oauth2Page;
+#endif
 
 typedef struct
 {
@@ -383,7 +389,9 @@ typedef struct AdvancedPage
 static BasicPage basic_page;
 static ReceivePage receive_page;
 static SendPage send_page;
+#ifdef USE_GNUTLS
 static Oauth2Page oauth2_page;
+#endif
 static ComposePage compose_page;
 static TemplatesPage templates_page;
 static PrivacyPage privacy_page;
@@ -409,12 +417,14 @@ static char *protocol_names[] = {
        N_("None (SMTP only)")
 };
 
+#ifdef USE_GNUTLS
 struct Oauth2Listener {
        int success;
        Oauth2Service service;
        OAUTH2Data *OAUTH2Data;
        gchar *trim_text;
 };
+#endif
 
 static void prefs_account_protocol_set_data_from_optmenu(PrefParam *pparam);
 static void prefs_account_protocol_set_optmenu         (PrefParam *pparam);
@@ -429,7 +439,7 @@ static void prefs_account_smtp_auth_type_set_data_from_optmenu (PrefParam *ppara
 static void prefs_account_smtp_auth_type_set_optmenu   (PrefParam *pparam);
 static void prefs_account_pop_auth_type_set_data_from_optmenu (PrefParam *pparam);
 static void prefs_account_pop_auth_type_set_optmenu    (PrefParam *pparam);
+#ifdef USE_GNUTLS
 static void prefs_account_oauth2_provider_set_data_from_optmenu        (PrefParam *pparam);
 static void prefs_account_oauth2_provider_set_optmenu  (PrefParam *pparam);
 static void prefs_account_oauth2_copy_url                       (GtkButton *button, gpointer data);
@@ -439,6 +449,7 @@ static int  prefs_account_oauth2_get_line(int sock, char *buf, int size);
 static void prefs_account_oauth2_set_sensitivity(void);
 static void prefs_account_oauth2_set_auth_sensitivity(void);
 static void prefs_account_oauth2_obtain_tokens(GtkButton *button, gpointer data);
+#endif
 static void prefs_account_set_autochk_interval_from_widgets(PrefParam *pparam);
 static void prefs_account_set_autochk_interval_to_widgets(PrefParam *pparam);
 
@@ -659,6 +670,7 @@ static PrefParam send_param[] = {
 };
 
 static PrefParam oauth2_param[] = {
+#ifdef USE_GNUTLS
        {"oauth2_auth_provider", "0", &tmp_ac_prefs.oauth2_provider, P_ENUM,
         &oauth2_page.oauth2_auth_optmenu,
         prefs_account_oauth2_provider_set_data_from_optmenu,
@@ -675,6 +687,23 @@ static PrefParam oauth2_param[] = {
 
        {"oauth2_client_secret", NULL, &tmp_ac_prefs.oauth2_client_secret, P_STRING,
         &oauth2_page.oauth2_client_secret_entry, prefs_set_data_from_entry, prefs_set_entry},
+#else
+       {"oauth2_auth_provider", "0", &tmp_ac_prefs.oauth2_provider, P_ENUM,
+        NULL, NULL, NULL},
+
+       {"oauth2_date", 0, &tmp_ac_prefs.oauth2_date, P_INT,
+        NULL, NULL, NULL},
+
+       {"oauth2_authcode", NULL, &tmp_ac_prefs.oauth2_authcode, P_PASSWORD,
+        NULL, NULL, NULL},
+
+       {"oauth2_client_id", NULL, &tmp_ac_prefs.oauth2_client_id, P_STRING,
+        NULL, NULL, NULL},
+
+       {"oauth2_client_secret", NULL, &tmp_ac_prefs.oauth2_client_secret, P_STRING,
+        NULL, NULL, NULL},
+
+#endif
 
        {NULL, NULL, NULL, P_OTHER, NULL, NULL, NULL}
 };
@@ -1621,8 +1650,9 @@ static void receive_create_widget_func(PrefsPage * _page,
        COMBOBOX_ADD (menu2, _("Select"), 0);
        COMBOBOX_ADD (menu2, NULL, 0);
        COMBOBOX_ADD (menu2, "APOP", POPAUTH_APOP);
+#ifdef USE_GNUTLS
        COMBOBOX_ADD (menu2, "OAuth2", POPAUTH_OAUTH2);
-
+#endif
        SET_TOGGLE_SENSITIVITY (pop_auth_checkbtn, vbox5);
 
        PACK_CHECK_BUTTON (vbox2, rmmail_checkbtn,
@@ -1759,7 +1789,9 @@ static void receive_create_widget_func(PrefsPage * _page,
        COMBOBOX_ADD (menu, "SCRAM-SHA-1", IMAP_AUTH_SCRAM_SHA1);
        COMBOBOX_ADD (menu, "PLAIN", IMAP_AUTH_PLAIN);
        COMBOBOX_ADD (menu, "LOGIN", IMAP_AUTH_LOGIN);
+#ifdef USE_GNUTLS
        COMBOBOX_ADD (menu, "OAUTH2", IMAP_AUTH_OAUTH2);
+#endif
 
        hbox1 = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 8);
        gtk_widget_show (hbox1);
@@ -2016,7 +2048,9 @@ static void send_create_widget_func(PrefsPage * _page,
        COMBOBOX_ADD (menu, "PLAIN", SMTPAUTH_PLAIN);
        COMBOBOX_ADD (menu, "LOGIN", SMTPAUTH_LOGIN);
        COMBOBOX_ADD (menu, "CRAM-MD5", SMTPAUTH_CRAM_MD5);
+#ifdef USE_GNUTLS
        COMBOBOX_ADD (menu, "OAUTH2", SMTPAUTH_OAUTH2);
+#endif
        COMBOBOX_ADD (menu, "DIGEST-MD5", SMTPAUTH_DIGEST_MD5);
        gtk_list_store_set(menu, &iter, COMBOBOX_SENS, FALSE, -1);
 
@@ -2162,6 +2196,7 @@ static void send_create_widget_func(PrefsPage * _page,
        page->page.widget = vbox1;
 }
 
+#ifdef USE_GNUTLS
 static void oauth2_create_widget_func(PrefsPage * _page,
                                            GtkWindow * window,
                                            gpointer data)
@@ -2376,6 +2411,7 @@ static void oauth2_create_widget_func(PrefsPage * _page,
        /*      oauth2_encode(OAUTH2info[0][OA2_CLIENT_ID]); */
 
 }
+#endif
 
 static void compose_create_widget_func(PrefsPage * _page,
                                            GtkWindow * window,
@@ -3609,8 +3645,10 @@ static gint prefs_basic_apply(void)
                        gtk_entry_get_text(GTK_ENTRY(basic_page.pass_entry)),
                        FALSE);
 
+#ifdef USE_GNUTLS
        /* Manual password change - reset expiry on OAUTH2 tokens*/
        passwd_store_set_account(tmp_ac_prefs.account_id, PWS_ACCOUNT_OAUTH2_EXPIRY, "0", FALSE);
+#endif
 
        if (protocol == A_IMAP4 || protocol == A_NNTP) {
                new_id = g_strdup_printf("#%s/%s",
@@ -3653,13 +3691,15 @@ static gint prefs_send_apply(void)
                        PWS_ACCOUNT_SEND,
                        gtk_entry_get_text(GTK_ENTRY(send_page.smtp_pass_entry)),
                        FALSE);
-
+#ifdef USE_GNUTLS
        /* Manual password change - reset expiry on OAUTH2 tokens*/
        passwd_store_set_account(tmp_ac_prefs.account_id, PWS_ACCOUNT_OAUTH2_EXPIRY, "0", FALSE);
+#endif
 
        return 0;
 }
 
+#ifdef USE_GNUTLS
 static gint prefs_oauth2_apply(void)
 {
        prefs_set_data_from_dialog(oauth2_param);
@@ -3672,6 +3712,7 @@ static gint prefs_oauth2_apply(void)
 
        return 0;
 }
+#endif
 
 static gint prefs_compose_apply(void)
 {
@@ -3770,6 +3811,7 @@ static void send_destroy_widget_func(PrefsPage *_page)
        /* SendPage *page = (SendPage *) _page; */
 }
 
+#ifdef USE_GNUTLS
 static void oauth2_destroy_widget_func(PrefsPage *_page)
 {
        /* Oauth2Page *page = (Oauth2Page *) _page; */
@@ -3779,6 +3821,7 @@ static void oauth2_destroy_widget_func(PrefsPage *_page)
                oauth2_listener_cancel = 1;
        }
 }
+#endif
 
 static void compose_destroy_widget_func(PrefsPage *_page)
 {
@@ -3842,6 +3885,7 @@ static gboolean send_can_close_func(PrefsPage *_page)
        return prefs_send_apply() >= 0;
 }
 
+#ifdef USE_GNUTLS
 static gboolean oauth2_can_close_func(PrefsPage *_page)
 {      
        Oauth2Page *page = (Oauth2Page *) _page;
@@ -3851,6 +3895,7 @@ static gboolean oauth2_can_close_func(PrefsPage *_page)
 
        return prefs_oauth2_apply() >= 0;
 }
+#endif
 
 static gboolean compose_can_close_func(PrefsPage *_page)
 {      
@@ -3947,6 +3992,7 @@ static void send_save_func(PrefsPage *_page)
                cancelled = FALSE;
 }
 
+#ifdef USE_GNUTLS
 static void oauth2_save_func(PrefsPage *_page)
 {
        Oauth2Page *page = (Oauth2Page *) _page;
@@ -3957,6 +4003,7 @@ static void oauth2_save_func(PrefsPage *_page)
        if (prefs_oauth2_apply() >= 0)
                cancelled = FALSE;
 }
+#endif
 
 static void compose_save_func(PrefsPage *_page)
 {
@@ -4092,6 +4139,7 @@ static void register_send_page(void)
        prefs_account_register_page((PrefsPage *) &send_page);
 }
 
+#ifdef USE_GNUTLS
 static void register_oauth2_page(void)
 {
        static gchar *path[3];
@@ -4109,6 +4157,7 @@ static void register_oauth2_page(void)
          
        prefs_account_register_page((PrefsPage *) &oauth2_page);
 }
+#endif
 
 static void register_compose_page(void)
 {
@@ -4298,7 +4347,9 @@ void prefs_account_init()
        hooks_register_hook(SSL_CERT_GET_PASSWORD, sslcert_get_password, NULL);
 #endif
        register_proxy_page();
+#ifdef USE_GNUTLS
        register_oauth2_page();
+#endif
        register_advanced_page();
 }
 
@@ -5045,6 +5096,7 @@ static void prefs_account_pop_auth_type_set_optmenu(PrefParam *pparam)
        combobox_select_by_data(optmenu, type);
 }
 
+#ifdef USE_GNUTLS
 static void prefs_account_oauth2_provider_set_data_from_optmenu(PrefParam *pparam)
 {
        *((Oauth2Service *)pparam->data) =
@@ -5200,6 +5252,7 @@ static void prefs_account_oauth2_obtain_tokens(GtkButton *button, gpointer data)
        g_free(trim_text);
        g_free(OAUTH2Data);
 }
+#endif
 
 static void prefs_account_set_autochk_interval_to_widgets(PrefParam *pparam)
 {
@@ -5997,6 +6050,7 @@ static void prefs_account_receive_itv_spinbutton_value_changed_cb(GtkWidget *w,
        }
 }
 
+#ifdef USE_GNUTLS
 //Automation of the oauth2 authorisation process to receive loopback callback generated by redirect in browser
 static void prefs_account_oauth2_listener(GTask *task, gpointer source, gpointer task_data, GCancellable *cancellable)
 {
@@ -6186,3 +6240,4 @@ static int prefs_account_oauth2_get_line(int sock, char *buf, int size)
 
         return (i);
 }
+#endif
index 49b6da000245729663916772621d292f83ddbeb8..4f6bad3a514d5d0489b614e6db5ca708d5a04473 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Claws Mail -- a GTK based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
+ * Copyright (C) 1999-2022 the Claws Mail team and Hiroyuki Yamamoto
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
index bf86942d5fd1632e94251d16971778f819b5a108..8e2e5131918cbcda60e4b42cb43c0d7208d5d33c 100644 (file)
@@ -57,7 +57,9 @@
 #include "log.h"
 #include "passwordstore.h"
 #include "file-utils.h"
+#ifdef USE_GNUTLS
 #include "oauth2.h"
+#endif
 
 typedef struct _SendProgressDialog     SendProgressDialog;
 
@@ -282,6 +284,9 @@ gint send_message_smtp_full(PrefsAccount *ac_prefs, GSList *to_list, FILE *fp, g
                    strlen(ac_prefs->gnutls_priority))
                        session->gnutls_priority = g_strdup(ac_prefs->gnutls_priority);
                session->use_tls_sni = ac_prefs->use_tls_sni;
+
+               if (ac_prefs->use_smtp_auth && ac_prefs->smtp_auth_type == SMTPAUTH_OAUTH2)
+                       oauth2_check_passwds (ac_prefs);
 #else
                if (ac_prefs->ssl_smtp != SSL_NONE) {
                        if (alertpanel_full(_("Insecure connection"),
@@ -299,9 +304,6 @@ gint send_message_smtp_full(PrefsAccount *ac_prefs, GSList *to_list, FILE *fp, g
                }
                port = ac_prefs->set_smtpport ? ac_prefs->smtpport : SMTP_PORT;
 #endif
-               
-               if(ac_prefs->use_smtp_auth && ac_prefs->smtp_auth_type == SMTPAUTH_OAUTH2)
-                       oauth2_check_passwds (ac_prefs);
 
                if (ac_prefs->use_smtp_auth) {
                        smtp_session->forced_auth_type = ac_prefs->smtp_auth_type;