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
ac7de069
...
ac7de069b725e69f1671052d2f4958531ccf93d5
authored
2002-10-13 20:32:50 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Updated to use new register style
1 parent
7150e90b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
guimb/scm/mimeheader.scm
guimb/scm/numaddr.scm
guimb/scm/redirect.scm
guimb/scm/reject.scm
guimb/scm/mimeheader.scm
View file @
ac7de06
...
...
@@ -79,5 +79,5 @@
(
if
sieve-parser
(
sieve-register-test
"mimeheader"
test-mimeheader
(
append
comparator
match-type
)
(
list
'string-list
'string-list
)))
(
list
'string-list
'string-list
)
(
append
comparator
match-type
)))
...
...
guimb/scm/numaddr.scm
View file @
ac7de06
...
...
@@ -69,5 +69,5 @@
(
if
sieve-parser
(
sieve-register-test
"numaddr"
test-numaddr
size-comp
(
list
'string-list
'number
)
))
(
list
'string-list
'number
)
size-comp
))
...
...
guimb/scm/redirect.scm
View file @
ac7de06
...
...
@@ -51,7 +51,7 @@
;;; Register action
(
if
sieve-parser
(
sieve-register-action
"redirect"
action-redirect
'string
))
(
sieve-register-action
"redirect"
action-redirect
(
list
'string
)
'
()
))
...
...
guimb/scm/reject.scm
View file @
ac7de06
...
...
@@ -84,7 +84,7 @@
;;; Register action
(
if
sieve-parser
(
sieve-register-action
"reject"
action-reject
'string
))
(
sieve-register-action
"reject"
action-reject
(
list
'string
)
'
()
))
...
...
Please
register
or
sign in
to post a comment