Hi Kelly,

The following are my mail settings for VM. I receive mail via SSL
(stunnel) and send it in plain text with smtp authentication. If you need
ssl or STARTTLS for sending, check out the documentation at:

http://josefsson.org/
http://josefsson.org/smtpmail.html

In any case, you will need new versions of smtpmail and some of its
dependencies. I tried to attach them to this mail but was unable to
send it with the attachments. You can get the files from emacs cvs or
I can send them to you directly. Yiou'll need:
smtpmail.el, netrc.el, sendmail.el

Here are my mail settings for emacs:

;;; Mail 
(setq user-full-name "Lukas Loehrer")

;; smtpmail
(setq smtpmail-default-smtp-server nil)
(setq smtpmail-smtp-server "mail.gmx.net")
(setq smtpmail-debug-info t)
(setq smtpmail-auth-login-username "my-login-name")
(setq smtpmail-smtp-service 25)
(setq smtpmail-auth-credentials '(("mail.gmx.net" 25 "my-login-name" 
"my-password")))

(setq smtpmail-local-domain nil)
(setq send-mail-function 'smtpmail-send-it)
(setq message-send-mail-function 'smtpmail-send-it) ; if you use message/Gnus

;;; VM
(setq vm-stunnel-program "/usr/sbin/stunnel")
(setq vm-spool-files
          (list
           (list 
                (concat vm-folder-directory "INBOX")
                "pop-ssl:my-pop.servert.com:995:pass:my-login-name:my-password"
                (concat vm-folder-directory "INBOX.CRASH"))))
;;; EOF

Hope this helps, Lukas
_______________________________________________
Oralux mailing list
[email protected]
http://lists.freearchive.org/mailman/listinfo/oralux

Reply via email to