diff options
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | fetchmail-features.html | 8 | ||||
-rw-r--r-- | md5ify.c | 1 | ||||
-rw-r--r-- | mxget.c | 1 | ||||
-rwxr-xr-x | specgen.sh | 1 |
5 files changed, 10 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index fadc7b13..ae90e7dc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -136,7 +136,7 @@ install: @echo "Installing fetchmail configurator..." $(INSTALL_PROGRAM) ${srcdir}/fetchmailconf $(bindir)/fetchmailconf @echo "Installing manual page..." - $(INSTALL_DATA) $(srcdir)/fetchmail.man $(mandir)/fetchmailconf.$(manext) + $(INSTALL_DATA) $(srcdir)/fetchmail.man $(mandir)/fetchmail.$(manext) ln -sf $(mandir)/fetchmail.$(manext) $(mandir)/fetchmailconf.$(manext) uninstall: diff --git a/fetchmail-features.html b/fetchmail-features.html index 2e6a7ccf..05dc4f2d 100644 --- a/fetchmail-features.html +++ b/fetchmail-features.html @@ -10,7 +10,7 @@ <table width="100%" cellpadding=0><tr> <td width="30%">Back to <a href="index.html">Fetchmail Home Page</a> <td width="30%" align=center>To <a href="/~esr/sitemap.html">Site Map</a> -<td width="30%" align=right>$Date: 1998/03/20 16:37:36 $ +<td width="30%" align=right>$Date: 1998/05/27 13:35:43 $ </table> <HR> @@ -18,6 +18,10 @@ <H2>Since 4.0:</H2> <UL> +<LI> There is now an interactive fetchmail configurator. + +<LI> Code is 64-bit clean and Y2K-safe. + <LI> Automatically decodes armored 7-bit MIME into 8 bits. <LI> You can specify which SMTP error is recognized as a spam block. @@ -144,7 +148,7 @@ get-mail, gwpop, pimp-1.0, pop-perl5-1.2, popc, popmail-1.6 and upop.<P> <table width="100%" cellpadding=0><tr> <td width="30%">Back to <a href="index.html">Fetchmail Home Page</a> <td width="30%" align=center>To <a href="/~esr/sitemap.html">Site Map</a> -<td width="30%" align=right>$Date: 1998/03/20 16:37:36 $ +<td width="30%" align=right>$Date: 1998/05/27 13:35:43 $ </table> <P><ADDRESS>Eric S. Raymond <A HREF="mailto:esr@thyrsus.com"><esr@snark.thyrsus.com></A></ADDRESS> @@ -11,6 +11,7 @@ ***********************************************************************/ #include <stdio.h> +#include <string.h> #if defined(STDC_HEADERS) #include <string.h> @@ -8,6 +8,7 @@ #include "config.h" #ifdef HAVE_RES_SEARCH #include <stdio.h> +#include <string.h> #include <netdb.h> #include <sys/types.h> #include <netinet/in.h> @@ -37,4 +37,5 @@ rm -rf $RPM_BUILD_ROOT /usr/bin/fetchmail /usr/bin/fetchmailconf /usr/man/man1/fetchmail.1 +/usr/man/man1/fetchmailconf.1 EOF |