<tool id="cdt.managedbuild.tool.gnu.cpp.compiler.mingw.base.1060880142" name="GCC C++ Compiler" superClass="cdt.managedbuild.tool.gnu.cpp.compiler.mingw.base"/>
<tool id="cdt.managedbuild.tool.gnu.c.compiler.mingw.base.2108842943" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.mingw.base">
<option id="gnu.c.compiler.option.include.paths.783512568" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath">
+ <listOptionValue builtIn="false" value=""C:\mingw\include""/>
<listOptionValue builtIn="false" value=""C:\mingw\include\glib-2.0""/>
<listOptionValue builtIn="false" value=""C:\mingw\include\gtk-2.0""/>
<listOptionValue builtIn="false" value=""C:\mingw\include\evolution-data-server-2.32""/>
</natures>
<filteredResources>
<filter>
- <id>1321292489312</id>
+ <id>1325156677028</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489312</id>
+ <id>1325156677034</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489312</id>
+ <id>1325156677038</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489328</id>
+ <id>1325156677042</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489328</id>
+ <id>1325156677046</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489328</id>
+ <id>1325156677050</id>
<name></name>
<type>30</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489328</id>
+ <id>1325156677053</id>
<name></name>
<type>30</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489328</id>
+ <id>1325156677056</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489328</id>
+ <id>1325156677059</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489328</id>
+ <id>1325156677062</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489343</id>
+ <id>1325156677066</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489343</id>
+ <id>1325156677069</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489343</id>
+ <id>1325156677073</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489343</id>
+ <id>1325156677076</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489343</id>
+ <id>1325156677079</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489343</id>
+ <id>1325156677083</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489343</id>
+ <id>1325156677086</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489359</id>
+ <id>1325156677094</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489359</id>
+ <id>1325156677099</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489359</id>
+ <id>1325156677103</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489359</id>
+ <id>1325156677107</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489359</id>
+ <id>1325156677111</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489359</id>
+ <id>1325156677114</id>
<name></name>
<type>22</type>
<matcher>
</matcher>
</filter>
<filter>
- <id>1321292489375</id>
+ <id>1325156677119</id>
<name></name>
<type>22</type>
<matcher>
#endif
}
+/**
+ * solipa_mail_check_email_address:
+ * @address:
+ *
+ * Returns: #TRUE if the email address is valid.
+ */
+gboolean
+solipa_mail_check_email_address (const gchar *address)
+{
+ gboolean ret;
+
+ GError *error;
+ GRegex *regex;
+
+ ret = FALSE;
+
+ error = NULL;
+ regex = g_regex_new ("^[[:alnum:]._%+-]+@(?:[[:alnum:]-]+\\.)+[[:alpha:]]{2,4}$", 0, 0, &error);
+
+ if (regex == NULL || error != NULL)
+ {
+ g_warning ("Error on creating regex: %s.",
+ error->message != NULL ? error->message : "no details");
+ return ret;
+ }
+
+ ret = g_regex_match ((const GRegex *)regex, address, 0, NULL);
+
+ g_regex_unref (regex);
+
+ return ret;
+}
+
GSList
*solipa_mail_get_addresses_from_string (const gchar *addresses)
{
void solipa_mail_send (SolipaMail *mail, const gchar *url);
+gboolean solipa_mail_check_email_address (const gchar *address);
+
GSList *solipa_mail_get_addresses_from_string (const gchar *addresses);
error = NULL;
regex = g_regex_new ("(^[-\\d]?\\d+)(\\d\\d\\d)", 0, 0, &error);
- if (error != NULL)
+ if (regex == NULL || error != NULL)
{
g_warning ("Error on creating regex: %s.",
error->message != NULL ? error->message : "no details");
noinst_PROGRAMS = allegato \
mail \
+ mail_check_address \
mail_get_addresses_from_string \
mailui \
ooo \
--- /dev/null
+/*
+ * Copyright (C) 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <libsolipa/mail.h>
+
+int
+main (int argc, char **argv)
+{
+ g_type_init ();
+
+ if (argc != 2) return 0;
+
+ if (!solipa_mail_check_email_address (argv[1]))
+ {
+ g_warning ("The email address isn't valid (%s).", argv[1]);
+ }
+
+ return 0;
+}
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include <mail.h>
+#include <libsolipa/mail.h>
int
main (int argc, char **argv)