Eliminate unused parts of IMAP URL.
authorChris Hanson <org/chris-hanson/cph>
Fri, 12 May 2000 18:00:56 +0000 (18:00 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 12 May 2000 18:00:56 +0000 (18:00 +0000)
v7/src/imail/imail-imap.scm
v7/src/imail/imail-top.scm

index f40ad5ed83a4fad2ab850080ad0706b719b43be2..aa2feafcc0f19a8d68c6be14a36a1170e05e20a1 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-imap.scm,v 1.31 2000/05/12 17:56:24 cph Exp $
+;;; $Id: imail-imap.scm,v 1.32 2000/05/12 18:00:52 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2000 Massachusetts Institute of Technology
 ;;;
 ;;;; URL
 
 (define-class (<imap-url>
-              (constructor %make-imap-url
-                           (user-id auth-type host port mailbox uid)))
+              (constructor %make-imap-url (user-id host port mailbox)))
     (<url>)
   ;; User name to connect as.
   (user-id define accessor)
-  ;; Type of authentication to use.  Ignored.
-  (auth-type define accessor)
   ;; Name or IP address of host to connect to.
   (host define accessor)
   ;; Port number to connect to.
   (port define accessor)
   ;; Name of mailbox to access.
-  (mailbox define accessor)
-  ;; Unique ID specifying a message.  Ignored.
-  (uid define accessor))
+  (mailbox define accessor))
 
-(define (make-imap-url user-id auth-type host port mailbox uid)
-  (save-url (%make-imap-url user-id auth-type host port mailbox uid)))
+(define (make-imap-url user-id host port mailbox)
+  (save-url (%make-imap-url user-id host port mailbox)))
 
 (define-url-protocol "imap" <imap-url>
   (let ((//server/
                 (or (parse-substring mbox string (car pv1) end)
                     (error:bad-range-argument string 'STRING->URL))))
            (%make-imap-url (parser-token pv1 'USER-ID)
-                           (parser-token pv1 'AUTH-TYPE)
                            (parser-token pv1 'HOST)
                            (let ((port (parser-token pv1 'PORT)))
                              (and port
                                   (string->number port)))
-                           (parser-token pv2 'MAILBOX)
-                           (parser-token pv2 'UID))))))))
+                           (parser-token pv2 'MAILBOX))))))))
 
 (define-method url-body ((url <imap-url>))
   (string-append
    (let ((user-id (imap-url-user-id url))
-        (auth-type (imap-url-auth-type url))
         (host (imap-url-host url))
         (port (imap-url-port url)))
-     (if (or user-id auth-type host port)
+     (if (or user-id host port)
         (string-append
          "//"
-         (if (or user-id auth-type)
-             (string-append (if user-id
-                                (url:encode-string user-id)
-                                "")
-                            (if auth-type
-                                (string-append
-                                 ";auth="
-                                 (if (string=? auth-type "*")
-                                     auth-type
-                                     (url:encode-string auth-type)))
-                                "")
-                            "@")
+         (if user-id
+             (string-append (url:encode-string user-id) "@")
              "")
          host
          (if port
              "")
          "/")
         ""))
-   (url:encode-string (imap-url-mailbox url))
-   (let ((uid (imap-url-uid url)))
-     (if uid
-        (string-append "/;uid=" uid)
-        ""))))
+   (url:encode-string (imap-url-mailbox url))))
 
 (define-method url-presentation-name ((url <imap-url>))
   (imap-url-mailbox url))
index 4a0754921446669c5438ee5677103776295eed52..559ba8ea228782062ac7470965d4fdbec6b5532e 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-top.scm,v 1.41 2000/05/12 17:56:28 cph Exp $
+;;; $Id: imail-top.scm,v 1.42 2000/05/12 18:00:56 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2000 Massachusetts Institute of Technology
 ;;;
@@ -182,16 +182,12 @@ May be called with an IMAIL folder URL as argument;
        (let ((url* (imail-default-imap-url)))
          (make-imap-url (or (imap-url-user-id url)
                             (imap-url-user-id url*))
-                        (or (imap-url-auth-type url)
-                            (imap-url-auth-type url*))
                         (or (imap-url-host url)
                             (imap-url-host url*))
                         (or (imap-url-port url)
                             (imap-url-port url*))
                         (or (imap-url-mailbox url)
-                            (imap-url-mailbox url*))
-                        (or (imap-url-uid url)
-                            (imap-url-uid url*))))
+                            (imap-url-mailbox url*))))
        url)))
 
 (define (imail-default-imap-url)
@@ -207,11 +203,9 @@ May be called with an IMAIL folder URL as argument;
     (lambda (host port)
       (make-imap-url (or (ref-variable imail-default-user-id)
                         (current-user-name))
-                    #f
                     host
                     port
-                    (ref-variable imail-default-imap-mailbox)
-                    #f))))
+                    (ref-variable imail-default-imap-mailbox)))))
 
 (define (imail-present-user-alert procedure)
   (call-with-output-to-temporary-buffer " *IMAP alert*"