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
a5c851be
...
a5c851bed82c1d0127dec6cb0ceaa037a232814e
authored
2001-07-09 07:53:54 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
changed flags display
1 parent
814b74eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
mail/from.c
mail/from.c
View file @
a5c851b
...
...
@@ -85,13 +85,13 @@ mail_from (int argc, char **argv)
else
if
(
attribute_is_userflag
(
attr
,
MAIL_ATTRIBUTE_SAVED
))
cflag
=
'*'
;
else
if
(
flags
&
MU_ATTRIBUTE_READ
)
cflag
=
'O'
;
else
if
(
flags
&
MU_ATTRIBUTE_SEEN
)
cflag
=
'R'
;
else
if
(
flags
&
MU_ATTRIBUTE_SEEN
)
cflag
=
'U'
;
else
if
(
attribute_is_recent
(
attr
))
cflag
=
'N'
;
else
cflag
=
'
U
'
;
cflag
=
'
'
;
message_get_envelope
(
msg
,
&
env
);
envelope_date
(
env
,
date
,
sizeof
(
date
),
NULL
);
...
...
Please
register
or
sign in
to post a comment