aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorArun Isaac2019-08-07 22:58:11 +0530
committerArun Isaac2019-08-07 22:59:28 +0530
commit3a02125ad752209e349a94ff7a470a2d79aff699 (patch)
tree810cfbbf08656aade5bb743833da429396794dd3 /doc
parent88d5b26f058917c27b45569683ad8e875b23d569 (diff)
downloadguile-email-3a02125ad752209e349a94ff7a470a2d79aff699.tar.gz
guile-email-3a02125ad752209e349a94ff7a470a2d79aff699.tar.lz
guile-email-3a02125ad752209e349a94ff7a470a2d79aff699.zip
doc: Document mbox->emails.
* doc/guile-email.texi (Reading Email): New chapter. * email/email.scm (mbox->emails): Add docstring.
Diffstat (limited to 'doc')
-rw-r--r--doc/guile-email.texi9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/guile-email.texi b/doc/guile-email.texi
index aa462cb..ed43d5a 100644
--- a/doc/guile-email.texi
+++ b/doc/guile-email.texi
@@ -24,6 +24,7 @@ Documentation License''.
* Data Types:: Data types provided by guile-email
* Encoding and Decoding:: Encoding and decoding Base64, Quoted-Printable
and Q-encoding
+* Reading Email:: Reading emails from the mbox format
* Contributing:: Contributing
Indices
@@ -444,6 +445,14 @@ Decode Q-encoding encoded string @var{str} and return the decoded
bytevector.
@end deffn
+@node Reading Email
+@chapter Reading Email
+
+@deffn {Scheme Procedure} mbox->emails port
+Read next email from @var{port} and return as a bytevector. @var{port}
+is an input port reading an mbox file.
+@end deffn
+
@node Contributing
@chapter Contributing