[mew-int 3048] how to save gmail password in this condition ?

ZhangJun <[email protected]> Thu, 01 Mar 2012 19:54:07 +0800
Newsgroups gmane.mail.mew.general
Message-ID <[email protected]>
my setup is like this:
Mew -> local stunnel server -> proxy server -> google imap ssl.

the proxy server can only proxy my imap stream to gmail, instead of every other sites.

my mew configure is:

(setq mew-config-alist 
;;Gmail
      '(
	("default"
	 ("mailbox-type" . "imap")
	 ("name"	. "myname")
	 ("user"	. "[email protected]")
	 ("mail-domain" . "gmail.com")
	 ("proto" . "%")
	 ("imap-server"	. "127.0.0.1")
	 ("imap-port" . "11111")
	 ("imap-user"	. "[email protected]")
	 ;; ...
	 )
	))
(setq mew-passwd-alist '(("[email protected]@127.0.0.1:imap" "mypasswd" 0)))

when I start mew, it ask me to input password for "[email protected]@127.0.0.1",
though I have setted it.
how can I make the password in configure file works ?

also,
when I start to write a new email,
the "From" is auto setted to "From: myname <[email protected]@gmail.com>"

havn't tryed user or imap-user without '@gmail.com'.