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
a523a502
...
a523a5028a4ae29af9a47be95d2dfe4eb63b4b4d
authored
2004-02-05 11:11:53 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(amd_envelope_date): Use Delivery-Date if X-Envelope-Date is not present.
1 parent
5f33526b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
mailbox/amd.c
mailbox/amd.c
View file @
a523a50
...
...
@@ -1371,7 +1371,8 @@ amd_envelope_date (envelope_t envelope, char *buf, size_t len,
if
((
status
=
message_get_header
(
msg
,
&
hdr
))
!=
0
)
return
status
;
if
(
header_aget_value
(
hdr
,
MU_HEADER_ENV_DATE
,
&
from
))
if
(
header_aget_value
(
hdr
,
MU_HEADER_ENV_DATE
,
&
from
)
&&
header_aget_value
(
hdr
,
MU_HEADER_DELIVERY_DATE
,
&
from
))
return
ENOSYS
;
/* Format: "sender date" */
...
...
Please
register
or
sign in
to post a comment