From 2dd4055cf26d85600a22205ae6e9ed668d614f26 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 31 Jul 2001 05:54:41 +0000 Subject: Must solve that damn linking problem next. svn path=/trunk/; revision=3426 --- Makefile.in | 2 +- configure.in | 8 ++++---- design-notes.html | 20 ++++++++++++-------- fetchmail.man | 11 ++++++----- imap.c | 12 +++++++++--- indexgen.sh | 7 +++++++ rcfile_y.y | 3 +++ sink.c | 2 +- 8 files changed, 43 insertions(+), 22 deletions(-) diff --git a/Makefile.in b/Makefile.in index 7b1ccb86..b5c2c745 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,7 +4,7 @@ # So just uncomment all the lines marked QNX. PACKAGE = fetchmail -VERSION = 5.8.14 +VERSION = 5.8.15 # Ultrix 2.2 make doesn't expand the value of VPATH. srcdir = @srcdir@ diff --git a/configure.in b/configure.in index 9411026e..43f2fbfb 100644 --- a/configure.in +++ b/configure.in @@ -240,23 +240,23 @@ case "$enable_fallback" in AC_ERROR([Sendmail selected as fallback, but not found]) #not reached fi - AC_DEFINE(FALLBACK_MDA, "$sendmail %T") + AC_DEFINE_UNQUOTED(FALLBACK_MDA, "$sendmail %T") echo "Will use $sendmail as fallback MDA." ;; procmail) if test -z "$procmail" ; then AC_ERROR([procmail selected as fallback, but not found]) #not reached fi - AC_DEFINE(FALLBACK_MDA, "$procmail -d %T") + AC_DEFINE_UNQUOTED(FALLBACK_MDA, "$procmail -d %T") echo "Will use $procmail as fallback MDA." ;; no|unset) echo "Will not use a fallback MDA" ;; auto|yes|set) if test -n "$procmail" ; then - AC_DEFINE(FALLBACK_MDA, "$procmail -d %T") + AC_DEFINE_UNQUOTED(FALLBACK_MDA,"$procmail -d %T") echo "Will use $procmail as fallback MDA." elif test -n "$sendmail" ; then - AC_DEFINE(FALLBACK_MDA, "$sendmail %T") + AC_DEFINE_UNQUOTED(FALLBACK_MDA,"$sendmail %T") echo "Will use $sendmail as fallback MDA." else echo "No fallback MDA available." fi diff --git a/design-notes.html b/design-notes.html index 27b4ccf3..2054f435 100644 --- a/design-notes.html +++ b/design-notes.html @@ -10,7 +10,7 @@
Back to Fetchmail Home Page To Site Map -$Date: 2001/06/24 19:23:57 $ +$Date: 2001/07/31 05:54:40 $

Design Notes On Fetchmail

@@ -455,15 +455,15 @@ all shaped the design in one way or another.

RFC821 -
SMTP protocol +
SMTP protocol
RFC822 -
Mail header format +
Mail header format
RFC937 -
Post Office Protocol - Version 2 +
Post Office Protocol - Version 2
RFC974 -
MX routing +
MX routing
RFC976 -
UUCP mail format +
UUCP mail format
RFC1081
Post Office Protocol - Version 3
RFC1123 @@ -537,9 +537,13 @@ all shaped the design in one way or another.

RFC2683
IMAP4 Implementation Recommendations
RFC2595 -
Using TLS with IMAP, POP3 and ACAP +
Using TLS with IMAP, POP3 and ACAP
RFC2645
On-Demand Mail Relay: SMTP with Dynamic IP Addresses +
RFC2821 +
Simple Mail Transfer Protocol +
RFC2822 +
Internet Message Format