From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/80923 Path: news.gmane.org!not-for-mail From: Richard Riley Newsgroups: gmane.emacs.gnus.general Subject: gnus smtp and gmail app specific permissions Date: Fri, 20 Jan 2012 10:35:21 +0000 Organization: aich tea tea pea dicky riley dot net Message-ID: Reply-To: ding@gnus.org NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1327055829 19056 80.91.229.12 (20 Jan 2012 10:37:09 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 20 Jan 2012 10:37:09 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M29205@lists.math.uh.edu Fri Jan 20 11:37:03 2012 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RoBqA-00035m-El for ding-account@gmane.org; Fri, 20 Jan 2012 11:37:02 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1RoBox-0008FV-SO; Fri, 20 Jan 2012 04:35:47 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1RoBou-0008FH-OW for ding@lists.math.uh.edu; Fri, 20 Jan 2012 04:35:44 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1RoBoq-00014D-1T for ding@lists.math.uh.edu; Fri, 20 Jan 2012 04:35:44 -0600 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1RoBon-0004P8-AC for ding@gnus.org; Fri, 20 Jan 2012 11:35:37 +0100 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RoBom-0002Fp-Nl for ding@gnus.org; Fri, 20 Jan 2012 11:35:36 +0100 Original-Received: from client-86-29-170-140.brhm-bam-3.adsl.virginmedia.com ([86.29.170.140]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 20 Jan 2012 11:35:36 +0100 Original-Received: from rileyrg by client-86-29-170-140.brhm-bam-3.adsl.virginmedia.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 20 Jan 2012 11:35:36 +0100 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-Lines: 26 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: client-86-29-170-140.brhm-bam-3.adsl.virginmedia.com Mail-Copies-To: never User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.92 (gnu/linux) Cancel-Lock: sha1:KERxLm1kcWDziOr6FBIP+9EXuuY= X-Spam-Score: -4.0 (----) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:80923 Archived-At: Any of you have a solution that works with smtpmail sending that sets up an app specific password for gmails smtp server? I have a setup using the multismtp selection from here: http://www.emacswiki.org/emacs/MultipleSMTPAccounts with the difference I set up my smtp accounts thus:- ,---- | (setq smtp-accounts '( | (ssl "rileyrg" "smtp.gmail.com" "587" | "(nth 0 (auth-source-user-and-password \"rileysmtp\"))" "(nth 1 (auth-source-user-and-password \"rileysmtp\"))" nil) | (ssl "shamrock" "smtp.gmail.com" "587" | "(nth 0 (auth-source-user-and-password \"shamrock\"))" "(nth 1 (auth-source-user-and-password \"shamrock\"))" nil) | )) `---- and then eval the user and password in the set-smtp-ssl function. But I'm confused because apparently smtpmail-auth-credentials isnt used for ssl, so why is it set in that function? Ideally a simple working sample of setting smtpmails "authentication" variables in elisp would do.