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
d674c737
...
d674c7372521d9202de458ce14ac1cb32a9a57fa
authored
2003-09-10 21:53:01 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Updated
1 parent
dce74af3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
5 deletions
ChangeLog
doc/texinfo/programs.texi
ChangeLog
View file @
d674c73
2003
-
09
-
11
Sergey
Poznyakoff
*
mailbox
/
imap
/
folder
.
c
(
authenticate_imap_login
)
:
Do
not
close
the
stream
on
authentication
failures
.
(
authenticate_imap_select
)
:
Bugfix
(
imap_parse
)
:
Use
MU_ERR_AUTH_FAILURE
where
appropriate
.
*
doc
/
texinfo
/
programs
.
texi
:
Updated
2003
-
09
-
10
Sergey
Poznyakoff
*
include
/
mailutils
/
errno
.
h
(
MU_ERR_BAD_AUTH_SCHEME
)
...
...
doc/texinfo/programs.texi
View file @
d674c73
...
...
@@ -2979,23 +2979,46 @@ Mailutils libraries.
When invoked without arguments, it produces the flags necessary to
link against the basic library of Mailutils: @file{libmailbox}.
Up to two arguments may be given that alter this behavior. These
are:
Arguments may be given that alter this behavior. These are:
@table @samp
@item auth
Print flags to link against @file{libmuauth}, the library adding new
authentication methods to @file{libmailbox}.
@item guile
Print flags to link against @file{libmu_scm}, the Guile interface
library.
library.
@item mbox
Link against @code{mbox} format library.
@item mh
Link against @code{mh} format library.
@item maildir
Link against @code{maildir} format library.
@item imap
Link against @code{imap} format library.
@item pop
Link against @code{pop} format library.
@item all
Link against all Mailutils format libraries.
@end table
Both arguments may be given simultaneously, e.g.:
The order of arguments does not matter.
For example, if you wrote a program @file{myprog.c} that uses
standard @sc{unix} mailbox format, @sc{mh} format and the
Guile interface, then you would link it with the following
command:
@example
cc -omyprog myprog.o `mailutils-config --link
aut
h guile`
cc -omyprog myprog.o `mailutils-config --link
mbox m
h guile`
@end example
@node General Information
...
...
Please
register
or
sign in
to post a comment