gchar *strmail;
+ gchar *from;
+ gchar *to;
+ gchar *url;
+
+ GError *error;
+
+ GOptionEntry entries[] =
+ {
+ { "from", 'f', 0, G_OPTION_ARG_STRING, &from, "Indirizzo FROM", NULL },
+ { "to", 't', 0, G_OPTION_ARG_STRING, &to, "Indirizzo TO", NULL },
+ { "url", 'u', 0, G_OPTION_ARG_STRING, &url, "Url smtp server", NULL },
+ { NULL }
+ };
+
+ GOptionContext *context;
+
+ GSList *addrs_from;
+ GSList *addrs_to;
+
+ from = NULL;
+ to = NULL;
+ url = NULL;
+
+ /* gestione degli argomenti della riga di comando */
+ context = g_option_context_new ("");
+ g_option_context_add_main_entries (context, entries, NULL);
+ error = NULL;
+ if (!g_option_context_parse (context, &argc, &argv, &error))
+ {
+ /* TO DO */
+ g_error ("Errore argomenti riga comando.\n");
+ return 0;
+ }
+
+ if (from == NULL || strcmp (g_strstrip (from), "") == 0)
+ {
+ g_error ("Occorre specificare il parametro from.\n");
+ return 0;
+ }
+ else
+ {
+ addrs_from = solipa_mail_get_addresses_from_string (from);
+ if (addrs_from == NULL || g_slist_length (addrs_from) < 1)
+ {
+ g_error ("Occorre specificare il parametro from.\n");
+ return 0;
+ }
+ }
+ if (to == NULL || strcmp (g_strstrip (to), "") == 0)
+ {
+ g_error ("Occorre specificare il parametro to.\n");
+ return 0;
+ }
+ else
+ {
+ addrs_to = solipa_mail_get_addresses_from_string (to);
+ if (addrs_to == NULL || g_slist_length (addrs_to) < 1)
+ {
+ g_error ("Occorre specificare il parametro to.\n");
+ return 0;
+ }
+ }
+ if (url == NULL || strcmp (g_strstrip (url), "") == 0)
+ {
+ g_error ("Occorre specificare il parametro url.\n");
+ return 0;
+ }
+
solipa = solipa_new ();
smail = solipa_mail_new (solipa);
solipa_mail_set_subject (smail, "Trying to send an e-mail with SolipaMail.");
addr = camel_internet_address_new ();
- camel_internet_address_add (addr, "Andrea Zagli", "azagli@libero.it");
+ camel_internet_address_add (addr,
+ g_hash_table_lookup ((GHashTable *)addrs_from->data, "name"),
+ g_hash_table_lookup ((GHashTable *)addrs_from->data, "address"));
solipa_mail_set_from (smail, addr);
camel_address_remove (CAMEL_ADDRESS (addr), -1);
- camel_internet_address_add (addr, "pippo", "pippo@localhost");
+ camel_internet_address_add (addr,
+ g_hash_table_lookup ((GHashTable *)addrs_to->data, "name"),
+ g_hash_table_lookup ((GHashTable *)addrs_to->data, "address"));
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://localhost/");
+ solipa_mail_send (smail, url);
return 0;
}