[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
How do I fix this problem: SMTP response error: 535
- To: wl-en@lists.airs.net
- Subject: How do I fix this problem: SMTP response error: 535
- From: "M. Robinson" <mr.m.robinson@gmail.com>
- Date: Sun, 05 Jun 2011 15:55:35 -0400
- Delivered-to: wl-en@lists.airs.net
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=aJ9I1I3enl1J+iZwDZyKz2bMVFc7+FAqK+mUTiVEOAg=; b=gUoCi57v64jIR+2rM7uF0dkPjYV6RPQr0kvZHEjom+tOD6X9xBajhKmIiTAcM83rJZ z63nn7eT3932UluPwf3hcC2+cuPUKRhMUnpx31VDTio55BYNFFz0FKEHLTX5ESVB1CvS 6/LvnrlK2vP3vf8T3eXcfokaufNYNBW5ito7w=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=euXockM+UyQr+GDv3fBfGnjYc2OwzLfMInsB+dALPcCaF6SAtibC4j0lh79+LB85y8 k6RQcp9l0ZTehRzSzFSuuOXUqKivIEg1i7q8x3ha5Ryg43sNN7e+r2sPAAV5cLxUFK/e MOZjLTDUCeYXUR0hYqSLR/xpWDDqi0dmLrDiQ=
- List-help: <mailto:wl-en-ctl@lists.airs.net?body=help>
- List-id: wl-en.lists.airs.net
- List-owner: <mailto:wl-en-admin@lists.airs.net>
- List-post: <mailto:wl-en@lists.airs.net>
- List-software: fml [fml stable 20011102.2100]
- List-unsubscribe: <mailto:wl-en-ctl@lists.airs.net?body=unsubscribe>
- Reply-to: wl-en@lists.airs.net
- User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110424 Thunderbird/3.1.10
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