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
7089ffd4
...
7089ffd463a43f0821273d47d601d3c3a9034c4d
authored
2006-06-27 13:10:17 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(moderator_action): set deleted flag manually, do not use undeclared sieve_mark_deleted.
1 parent
362f3f52
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
libsieve/extensions/moderator.c
libsieve/extensions/moderator.c
View file @
7089ffd
...
...
@@ -306,7 +306,12 @@ moderator_action (mu_sieve_machine_t mach, mu_list_t args, mu_list_t tags)
else
{
if
(
!
mu_sieve_tag_lookup
(
tags
,
"keep"
,
NULL
))
sieve_mark_deleted
(
msg
,
1
);
{
mu_attribute_t
attr
=
0
;
if
(
mu_message_get_attribute
(
msg
,
&
attr
)
==
0
)
mu_attribute_set_deleted
(
attr
);
}
else
discard
=
0
;
}
...
...
Please
register
or
sign in
to post a comment