[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

How do I fix this problem: SMTP response error: 535



Hello,

This is my first try installing wl, and here (http://imagebin.org/156897) is where I'm stuck; Any help would be appreciated.


Also, I don't know if the "/PLAIN" should be here

http://imagebin.org/156899


I started here with .wl:

http://emacs-fu.blogspot.com/2009/06/e-mail-with-wanderlust.html

;; mode:-*-emacs-lisp-*-
;; wanderlust
(setq
  elmo-maildir-folder-path "~/Maildir"    ;; where i store my mail

  wl-stay-folder-window t                 ;; show the folder pane (left)
  wl-folder-window-width 25               ;; toggle on/off with'i'

------------------------------------------------------------------------
I also tried inserting this section and go this result: http://imagebin.org/156900

  wl-draft-send-mail-function 'wl-draft-send-mail-with-pop-before-smtp
  wl-pop-before-smtp-user "mr.m.robinson@gmail.com"
  wl-pop-before-smtp-server "pop.gmail.com"
  wl-pop-before-smtp-authenticate-type "starttls"
  wl-draft-send-mail-function 'wl-draft-send-mail-with-pop-before-smtp
------------------------------------------------------------------------

  wl-smtp-posting-server "smtp.gmail.com"    ;; put the smtp server here
  wl-local-domain "mr.m.robinson@gmail.com"  ;; put something here...
  wl-message-id-domain "mr.m.robinson@gmail.com"   ;; ...

  wl-from "M. Robinson <mr.m.robinson@gmail.com>"  ;; my From:

  ;; note: all below are dirs (Maildirs) under elmo-maildir-folder-path
  ;; the '.'-prefix is for marking them as maildirs
  wl-fcc ".[Gmail].Sent Mail"       ;; sent msgs go to the "sent"-folder
  wl-fcc-force-as-read t            ;; mark sent messages as read
  wl-default-folder ".inbox"        ;; my main inbox
  wl-draft-folder ".drafts"         ;; store drafts in 'postponed'
  wl-trash-folder ".trash"          ;; put trash in 'trash'
  wl-spam-folder ".trash"           ;; ...spam as well
  wl-queue-folder ".queue"          ;; we don't use this

  ;; check this folder periodically, and update modeline
  wl-biff-check-folder-list '(".todo") ;; check every 180 seconds
                                       ;; (default: wl-biff-check-interval)

  ;; hide many fields from message buffers
  wl-message-ignored-field-list '("^.*:")
  wl-message-visible-field-list
  '("^\\(To\\|Cc\\):"
    "^Subject:"
    "^\\(From\\|Reply-To\\):"
    "^Organization:"
    "^Message-Id:"
    "^\\(Posted\\|Date\\):"
    )
  wl-message-sort-field-list
  '("^From"
    "^Organization:"
    "^X-Attribution:"
     "^Subject"
     "^Date"
     "^To"
     "^Cc"))
I