diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-03-02 22:14:44 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-03-02 22:14:44 +0000 |
commit | 11a0262606e3d7e9cd9aa9d55942c24bb9a26a4f (patch) | |
tree | d31bec6e6e93b9a41f1179245be5ffd4356f61e8 | |
parent | a36f2b9956218c317cb31229381207fbc4b2cb1c (diff) | |
download | fetchmail-11a0262606e3d7e9cd9aa9d55942c24bb9a26a4f.tar.gz fetchmail-11a0262606e3d7e9cd9aa9d55942c24bb9a26a4f.tar.bz2 fetchmail-11a0262606e3d7e9cd9aa9d55942c24bb9a26a4f.zip |
Minor port fixes.
svn path=/trunk/; revision=3180
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | configure.in | 6 | ||||
-rw-r--r-- | fetchmail.man | 14 |
3 files changed, 16 insertions, 7 deletions
@@ -2,6 +2,9 @@ (The `lines' figures total .c, .h, .l, and .y files under version control.) +* Restore ability to build with NLS. +* FreeBSD port fixes. + ------------------------------------------------------------------------------ fetchmail-5.7.0 (Thu Mar 1 18:00:08 EST 2001), 20131 lines: diff --git a/configure.in b/configure.in index 52e99889..39509476 100644 --- a/configure.in +++ b/configure.in @@ -56,11 +56,11 @@ then CPFLAGS="-I/usr/include" fi -# Check for FreeBSD special case: -lkvm needed +# Check for FreeBSD special case: more libs needed if test `uname` = "FreeBSD" then - echo "Adding -lkvm to standard libraries" - LIBS="$LIBS -lkvm" + echo "Adding -lmd -lkvm -lcom_err to standard libraries" + LIBS="$LIBS -lmd -lkvm -lcom_err" fi # Check for Rhapsody special case: it doesn't like -s diff --git a/fetchmail.man b/fetchmail.man index 2f956996..728a4841 100644 --- a/fetchmail.man +++ b/fetchmail.man @@ -705,7 +705,7 @@ option \fBuser\fR. .PP If your IMAP daemon returns the PREAUTH response in its greeting line, fetchmail will notice this and skip the normal authentication step. -This could be useful, e.g. if you start imapd explicitly using ssh. +This can be useful, e.g. if you start imapd explicitly using ssh. In this case you can declare the authentication value `ssh' on that site entry to stop \fI.fetchmail\fR from asking you for a password when it starts up. @@ -1633,6 +1633,12 @@ person referred by the To: address has already received the original copy of the mail). .SH CONFIGURATION EXAMPLES +Note that although there are password declarations in a good many +of the examples below, this is mainly for illustrative purposes. +We recommend stashing account/password pairs in your $HOME/.netrc +file, where they can be used not just by fetchmail but by ftp(1) and +other programs. + Basic format is: .nf @@ -1756,8 +1762,8 @@ imapd via ssh. Note that in this setup, IMAP authentication can be skipped. .nf -poll mailhost.net with proto imap and auth ssh: - plugin "ssh %h /usr/sbin/imapd"; +poll mailhost.net with proto imap: + plugin "ssh %h /usr/sbin/imapd" auth ssh; user esr is esr here .fi @@ -2094,7 +2100,7 @@ http://www.tuxedo.org/~esr/fetchmail or do a WWW search for pages with `fetchmail' in their titles. .SH SEE ALSO -mutt(1), elm(1), mail(1), sendmail(8), popd(8), imapd(8) +mutt(1), elm(1), mail(1), sendmail(8), popd(8), imapd(8), netrc(5) .SH APPLICABLE STANDARDS .TP 5 SMTP/ESMTP: |