From 7e842cfd399c0bea9d480d5fa7a18dfa06bb6a60 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 2 Jun 2011 23:19:42 -0400 Subject: This is what happens when I use Parabola for a day. --- .emacs | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to '.emacs') diff --git a/.emacs b/.emacs index 532b70b..fbf4b84 100644 --- a/.emacs +++ b/.emacs @@ -1,5 +1,8 @@ (set-face-attribute 'default nil :height 80) +(setq custom-file "~/.emacs.d/custom.el") +(load custom-file 'noerror) + (defun load-identica-mode () (when (require 'netrc nil t) (autoload 'identica-mode "identica-mode" nil t) @@ -10,6 +13,19 @@ ) ) +(setq send-mail-function 'smtpmail-send-it) ; if you use `mail' +(setq message-send-mail-function 'smtpmail-send-it) ; if you use message/Gnus +(setq smtpmail-default-smtp-server "plus.smtp.mail.yahoo.com") ; set before loading library +(setq smtpmail-local-domain "lukeshu.ath.cx") +(setq smtpmail-sendto-domain "lukeshu.ath.cx") +(setq smtpmail-debug-info t) ; only to debug problems +(setq smtpmail-smtp-service 465) +(setq smtpmail-auth-credentials ; or use ~/.authinfo + '(("plus.smtp.mail.yahoo.com" 465 "lukeshu@sbcglobal.net" "oct30yahoo"))) +(setq smtpmail-starttls-credentials + '(("plus.smtp.mail.yahoo.com" 465 nil nil))) +(load-library "smtpmail") + (setq package-archives '(("ELPA" . "http://tromey.com/elpa/") ("marmalade" . "http://marmalade-repo.org/packages/") ("gnu" . "http://elpa.gnu.org/packages/"))) @@ -112,6 +128,3 @@ (setq browse-url-generic-program (executable-find "v-www-browser") browse-url-browser-function 'browse-url-generic) - -(setq custom-file "~/.emacs.d/custom.el") -(load custom-file 'noerror) -- cgit v1.2.3-54-g00ecf