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
15461173
...
15461173015d6f39bb632f3348bab55c1d08f8f6
authored
2001-02-22 16:44:14 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
The test_list of the grammar was wrong after reading more carefuly
the RFC.
1 parent
fa5efdb3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
ChangeLog
sieve/gram-sieve.y
ChangeLog
View file @
1546117
2001-02-22 Alain Magloire
* sieve : New Directory.
* sieve/lex-sieve.lex : RFC3028 tokenizer.
* sieve/gram-sieve.y : RFC3028 grammar.
2001-02-20 Alain Magloire
* mailbox/mailbox.c (mailbox_set_ticket mailbox_set_authority
...
...
sieve/gram-sieve.y
View file @
1546117
...
...
@@ -45,7 +45,9 @@ reject : SIEVE_REJECT SIEVE_STRING ;
require : SIEVE_REQUIRE string_list ;
test_list : '(' test ')' | '(' test ',' test ')' | test;
test_list : '(' tests ')' ;
tests : test | test ',' tests ;
test : test_address | test_anyof | test_envelope | test_false | test_exists
| test_header | test_not | test_size | test_true ;
...
...
Please
register
or
sign in
to post a comment