summaryrefslogtreecommitdiff
path: root/libsieve/require.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2002-11-08 15:55:22 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2002-11-08 15:55:22 +0000
commit916871ec72d163e1f77273ba693cc2fb7e4a73fa (patch)
treec4ca40a9305b17135fa826e35261459a3d90ec6d /libsieve/require.c
parentb99d129df91352b707bc2200ded0a7a6eff7eb67 (diff)
downloadmailutils-916871ec72d163e1f77273ba693cc2fb7e4a73fa.tar.gz
mailutils-916871ec72d163e1f77273ba693cc2fb7e4a73fa.tar.bz2
New file. Handles "require" statement
Diffstat (limited to 'libsieve/require.c')
-rw-r--r--libsieve/require.c62
1 files changed, 62 insertions, 0 deletions
diff --git a/libsieve/require.c b/libsieve/require.c
new file mode 100644
index 000000000..4512eb74c
--- /dev/null
+++ b/libsieve/require.c
@@ -0,0 +1,62 @@
+/* GNU mailutils - a suite of utilities for electronic mail
+ Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2, 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 Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <string.h>
+#include <sieve.h>
+
+void
+sieve_require (list_t slist)
+{
+ int status;
+ iterator_t itr;
+
+ status = iterator_create (&itr, slist);
+ if (status)
+ {
+ sieve_error ("%s:%d: cannot create iterator: %s",
+ sieve_filename, sieve_line_num,
+ mu_errstring (status));
+ return;
+ }
+
+ for (iterator_first (itr); !iterator_is_done (itr); iterator_next (itr))
+ {
+ char *s;
+ sieve_register_t *reg;
+
+ iterator_current (itr, (void **)&s);
+
+ /* FIXME: if (strncmp (s, "comparator-", 11) ... */
+ reg = sieve_action_lookup (s);
+ if (!reg)
+ {
+ sieve_error ("%s:%d: source for the required action %s is not available",
+ sieve_filename, sieve_line_num, s);
+ break;
+ }
+ reg->required = 1;
+ }
+ iterator_destroy (&itr);
+}
+

Return to:

Send suggestions and report system problems to the System administrator.