Show
Ignore:
Timestamp:
09/30/06 09:12:06 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp

    • Property svn:ignore changed from
      *.elc
      MANIFEST
      Makefile
      Makefile.unix
      makefile
      elc.tar.gz
      cus-load.el
      finder-inf.el
      subdirs.el
      loaddefs.el
      to
      *.elc
      MANIFEST
      Makefile
      Makefile.unix
      makefile
      elc.tar.gz
      cus-load.el
      finder-inf.el
      subdirs.el
      loaddefs.el
      pre-mh-loaddefs.el-CMD
  • trunk/lisp/mail/smtpmail.el

    r4161 r4169  
    542542                 (hash (rfc2104-hash 'md5 64 16 passwd decoded)) 
    543543                 (response (concat (smtpmail-cred-user cred) " " hash)) 
    544                  (encoded (base64-encode-string response))) 
     544                 (encoded (base64-encode-string response t))) 
    545545            (smtpmail-send-command process (format "%s" encoded)) 
    546546            (if (or (null (car (setq ret (smtpmail-read-response process)))) 
     
    555555            (throw 'done nil)) 
    556556        (smtpmail-send-command 
    557          process (base64-encode-string (smtpmail-cred-user cred))) 
     557         process (base64-encode-string (smtpmail-cred-user cred t))) 
    558558        (if (or (null (car (setq ret (smtpmail-read-response process)))) 
    559559                (not (integerp (car ret))) 
    560560                (>= (car ret) 400)) 
    561561            (throw 'done nil)) 
    562         (smtpmail-send-command process (base64-encode-string passwd)) 
     562        (smtpmail-send-command process (base64-encode-string passwd t)) 
    563563        (if (or (null (car (setq ret (smtpmail-read-response process)))) 
    564564                (not (integerp (car ret))) 
     
    577577                                                (smtpmail-cred-user cred) 
    578578                                                "\0" 
    579                                                 passwd)))) 
     579                                                passwd) t))) 
    580580        (if (or (null (car (setq ret (smtpmail-read-response process)))) 
    581581                (not (integerp (car ret)))