diff --git a/scheme/lib/pop3.scm b/scheme/lib/pop3.scm index ae3e3dc..b7921ab 100644 --- a/scheme/lib/pop3.scm +++ b/scheme/lib/pop3.scm @@ -1,8 +1,9 @@ -;;; POP3.scm --- implement the POP3 maildrop protocol in the Scheme Shell +;;; pop3.scm --- implement the POP3 maildrop protocol in the Scheme Shell ;;; This file is part of the Scheme Untergrund Networking package. ;;; Copyright (c) 1998 by Eric Marsden +;;; Copyright (c) 2003 by Mike Sperber ;;; For copyright information, see the file COPYING which comes with ;;; the distribution. @@ -13,7 +14,7 @@ ;; Emacs Lisp library called pop3.el by Richard Pieri which includes ;; APOP support. ;; -;; * Shriram Krishnamurth has written a POP3 library for MzScheme (as +;; * Shriram Krishnamurthi has written a POP3 library for MzScheme (as ;; well as support for the NNTP protocol, for SMTP, ...). ;; ;; * Siod (a small-footprint Scheme implementation by George Carette) @@ -282,5 +283,3 @@ (define (build-command str . opt-args) (string-join (cons str opt-args))) - -;; EOF