/*
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2011 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
#include "mail.h"
+#ifdef G_OS_WIN32
+ #include <winsock2.h>
+#endif
+
static void solipa_mail_class_init (SolipaMailClass *class);
static void solipa_mail_init (SolipaMail *solipa_mail);
return;
}
+#ifdef G_OS_WIN32
+ /* devo richiamare manualmente l'inizializzazione dei socket in windows
+ * perché libcamel non lo fa */
+ WORD wVersionRequested;
+ WSADATA wsaData;
+
+ wVersionRequested = MAKEWORD(2, 2);
+
+ int err = WSAStartup (wVersionRequested, &wsaData);
+
+ if (err != 0)
+ {
+ /* Tell the user that we could not find a usable */
+ /* Winsock DLL. */
+ g_warning ("WSAStartup failed with error: %d", err);
+ return;
+ }
+
+ if (LOBYTE(wsaData.wVersion) != 2 || HIBYTE(wsaData.wVersion) != 2)
+ {
+ /* Tell the user that we could not find a usable */
+ /* WinSock DLL. */
+ g_warning ("Could not find a usable version of Winsock.dll.");
+ WSACleanup ();
+ return;
+ }
+#endif
+
error = NULL;
trans = camel_session_get_service (solipa_get_camel_session (priv->solipa), url, CAMEL_PROVIDER_TRANSPORT, &error);
if (trans == NULL || error != NULL)
noconnect:
g_object_unref (trans);
+
+#ifdef G_OS_WIN32
+ WSACleanup ();
+#endif
}
/* PRIVATE */
if (fields_name_first_row)
{
- /* nomi dei campi come priga riga */
+ /* nomi dei campi come prima riga */
row = g_strdup ("");
for (i = 0; i < n_columns; i++)
{
/*
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
*
* 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
camel_address_remove (CAMEL_ADDRESS (addr), -1);
- camel_internet_address_add (addr, "tux", "tux@sid-sviluppo.miodominio.it");
+ camel_internet_address_add (addr, "pippo", "pippo@localhost");
solipa_mail_add_recipient (smail, addr, SOLIPA_MAIL_RECIPIENT_TYPE_TO);
g_object_unref (addr);
strmail = solipa_mail_get_as_string (smail);
g_message ("The email text:\n%s", strmail);
- solipa_mail_send (smail, "smtp://10.0.0.102/");
+ solipa_mail_send (smail, "smtp://localhost/");
return 0;
}