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
731e1271
...
731e127164650d45af3b93fa34007fa145079d47
authored
2001-06-15 03:01:53 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added some text to the envelope docs, still incomplete.
1 parent
e912cf9e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
7 deletions
doc/envelope.texi
doc/envelope.texi
View file @
731e127
@example
@code
{
/* Prefix @emph{envelope_} is reserved */
}
@code
{
#
include
<
mailutils
/
envelope
.
h
>
}
@end
example
@deftypefun
int
envelope_create
(
envelope_t
*
,
void
*
);
@deftypefun
int
envelope_date
(
envelope_t
,
char
*
,
size_t
,
size_t
*
);
Get
the
date
that
the
message
was
delivered
to
the
mailbox
,
in
something
close
to
ANSI
ctime
()
format
:
Mon
Jul
05
13
:
08
:
27
1999
.
@end
deftypefun
@deftypefun
void
envelope_destroy
(
envelope_t
*
,
void
*
);
@deftypefun
int
envelope_sender
(
envelope_t
,
char
*
,
size_t
,
size_t
*
);
Get
the
address
that
this
message
was
reportedly
received
from
.
This
would
be
the
"mail from"
argument
if
the
message
was
delivered
or
received
via
SMTP
,
for
example
.
@end
deftypefun
@deftypefun
int
envelope_get_message
(
envelope_t
,
message_t
*
);
@end
deftypefun
@deftypefun
int
envelope_set_sender
(
envelope_t
,
int
(
*
_sender
)
__P
((
envelope_t
,
char
*
,
size_t
,
size_t
*
)),
void
*
);
@deftypefun
int
envelope_create
(
envelope_t
*
,
void
*
);
Primarily
for
internal
use
.
@end
deftypefun
@deftypefun
int
envelope_sender
(
envelope_t
,
char
*
,
size_t
,
size_t
*
);
@deftypefun
void
envelope_destroy
(
envelope_t
*
,
void
*
);
Primarily
for
internal
use
.
@end
deftypefun
@deftypefun
int
envelope_set_date
(
envelope_t
,
int
(
*
_date
)
__P
((
envelope_t
,
char
*
,
size_t
,
size_t
*
)),
void
*
);
@deftypefun
int
envelope_set_sender
(
envelope_t
,
int
(
*
_sender
)
__P
((
envelope_t
,
char
*
,
size_t
,
size_t
*
)),
void
*
);
Primarily
for
internal
use
.
The
implementation
of
envelope_t
depends
on
the
mailbox
type
,
this
allows
the
function
which
actually
gets
the
sender
to
be
set
by
the
creator
of
an
envelope_t
.
@end
deftypefun
@deftypefun
int
envelope_date
(
envelope_t
,
char
*
,
size_t
,
size_t
*
);
@deftypefun
int
envelope_set_date
(
envelope_t
,
int
(
*
_date
)
__P
((
envelope_t
,
char
*
,
size_t
,
size_t
*
)),
void
*
);
Primarily
for
internal
use
.
The
implementation
of
envelope_t
depends
on
the
mailbox
type
,
this
allows
the
function
which
actually
gets
the
date
to
be
set
by
the
creator
of
an
envelope_t
.
@end
deftypefun
...
...
Please
register
or
sign in
to post a comment