Joined June 2013
·

Nick Pascucci

United States
·
·

Posted to Google Talk inside Emacs over 1 year ago

Nice! You can also store the passwords in an encrypted elisp file that then gets loaded on startup. If you're using two-factor auth like me, then you probably don't want to remember the application specific passwords you need to use for this. You can do something like this to get it working:

;; In an encrypted file

(setq gmail-jabber-password "password")

;; in emacs init configuration

(require "path/to/encrypted/file.gpg")
(setq jabber-account-list
        `(("foo@gmail.com"
           (:network-server . "talk.google.com")
           (:connection-type . ssl)
           (:port . 443)
           (:password . ,gmail-jabber-password))))
Achievements
90 Karma
0 Total ProTip Views