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
57d7c43d
...
57d7c43d12d3b555867b338856297cafe702c956
authored
2002-07-17 08:20:49 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mail_mbox_commit): Do not store deleted messages into mbox (Thanks Matthew Whitworth).
1 parent
eb1d5d74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
mail/quit.c
mail/quit.c
View file @
57d7c43
...
...
@@ -94,9 +94,10 @@ mail_mbox_commit ()
}
message_get_attribute
(
msg
,
&
attr
);
if
(
!
is_user_mbox
&&
(
attribute_is_userflag
(
attr
,
MAIL_ATTRIBUTE_MBOXED
)
||
(
!
hold
&&
attribute_is_read
(
attr
))))
if
(
!
is_user_mbox
&&
!
attribute_is_deleted
(
attr
)
&&
(
attribute_is_userflag
(
attr
,
MAIL_ATTRIBUTE_MBOXED
)
||
(
!
hold
&&
attribute_is_read
(
attr
))))
{
if
(
!
dest_mbox
)
{
...
...
Please
register
or
sign in
to post a comment