Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
916871ec
...
916871ec72d163e1f77273ba693cc2fb7e4a73fa
authored
2002-11-08 15:55:22 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
New file. Handles "require" statement
1 parent
b99d129d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
libsieve/require.c
libsieve/require.c
0 → 100644
View file @
916871e
/* 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
);
}
Please
register
or
sign in
to post a comment