annotate lisp/mail/smtpmail.el @ 73215:32b78c90379a

2006-10-02 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change) * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo in 2006-09-28 commit.
author Simon Josefsson <jas@extundo.com>
date Mon, 02 Oct 2006 07:48:59 +0000
parents 6887b498642b
children 6018dbb5896c bb0e318b7c53
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17517
8f952e921136 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17436
diff changeset
1 ;;; smtpmail.el --- simple SMTP protocol (RFC 821) for sending mail
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
68648
067115a6e738 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 68250
diff changeset
3 ;; Copyright (C) 1995, 1996, 2001, 2002, 2003, 2004, 2005,
067115a6e738 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 68250
diff changeset
4 ;; 2006 Free Software Foundation, Inc.
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 ;; Author: Tomoji Kagatani <kagatani@rbc.ncl.omron.co.jp>
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
7 ;; Maintainer: Simon Josefsson <simon@josefsson.org>
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
8 ;; w32 Maintainer: Brian D. Carlstrom <bdc@ai.mit.edu>
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
9 ;; ESMTP support: Simon Leinen <simon@switch.ch>
37800
9cddd888d25f (maybe-append-domain): Renamed to
Gerd Moellmann <gerd@gnu.org>
parents: 37600
diff changeset
10 ;; Hacked by Mike Taylor, 11th October 1999 to add support for
9cddd888d25f (maybe-append-domain): Renamed to
Gerd Moellmann <gerd@gnu.org>
parents: 37600
diff changeset
11 ;; automatically appending a domain to RCPT TO: addresses.
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
12 ;; AUTH=LOGIN support: Stephen Cranefield <scranefield@infoscience.otago.ac.nz>
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 ;; Keywords: mail
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 ;; This file is part of GNU Emacs.
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; GNU Emacs is free software; you can redistribute it and/or modify
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; it under the terms of the GNU General Public License as published by
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 ;; the Free Software Foundation; either version 2, or (at your option)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 ;; any later version.
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 ;; GNU Emacs is distributed in the hope that it will be useful,
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 ;; GNU General Public License for more details.
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27 ;; You should have received a copy of the GNU General Public License
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 ;; along with GNU Emacs; see the file COPYING. If not, write to the
64085
18a818a2ee7c Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 62621
diff changeset
29 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18a818a2ee7c Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 62621
diff changeset
30 ;; Boston, MA 02110-1301, USA.
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 ;;; Commentary:
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 ;; Send Mail to smtp host from smtpmail temp buffer.
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35
23142
98c430cac424 (smtpmail-send-it): Add autoload cookie.
Karl Heuer <kwzh@gnu.org>
parents: 22037
diff changeset
36 ;; Please add these lines in your .emacs(_emacs) or use customize.
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 ;;
23142
98c430cac424 (smtpmail-send-it): Add autoload cookie.
Karl Heuer <kwzh@gnu.org>
parents: 22037
diff changeset
38 ;;(setq send-mail-function 'smtpmail-send-it) ; if you use `mail'
44864
c18dd95f6962 (smtpmail-queue-counter): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 42225
diff changeset
39 ;;(setq message-send-mail-function 'smtpmail-send-it) ; if you use message/Gnus
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 ;;(setq smtpmail-default-smtp-server "YOUR SMTP HOST")
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 ;;(setq smtpmail-local-domain "YOUR DOMAIN NAME")
26028
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
42 ;;(setq smtpmail-sendto-domain "YOUR DOMAIN NAME")
23142
98c430cac424 (smtpmail-send-it): Add autoload cookie.
Karl Heuer <kwzh@gnu.org>
parents: 22037
diff changeset
43 ;;(setq smtpmail-debug-info t) ; only to debug problems
44868
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
44 ;;(setq smtpmail-auth-credentials ; or use ~/.authinfo
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
45 ;; '(("YOUR SMTP HOST" 25 "username" "password")))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
46 ;;(setq smtpmail-starttls-credentials
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
47 ;; '(("YOUR SMTP HOST" 25 "~/.my_smtp_tls.key" "~/.my_smtp_tls.cert")))
54763
63ed691cfee6 Add comment, based on report by kdc@rcn.com (Kevin D. Clark).
Simon Josefsson <jas@extundo.com>
parents: 54350
diff changeset
48 ;; Where the 25 equals the value of `smtpmail-smtp-service', it can be an
63ed691cfee6 Add comment, based on report by kdc@rcn.com (Kevin D. Clark).
Simon Josefsson <jas@extundo.com>
parents: 54350
diff changeset
49 ;; integer or a string, just as long as they match (eq).
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
51 ;; To queue mail, set smtpmail-queue-mail to t and use
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
52 ;; smtpmail-send-queued-mail to send.
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
53
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
54 ;; Modified by Stephen Cranefield <scranefield@infoscience.otago.ac.nz>,
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
55 ;; 22/6/99, to support SMTP Authentication by the AUTH=LOGIN mechanism.
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
56 ;; See http://help.netscape.com/products/server/messaging/3x/info/smtpauth.html
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
57 ;; Rewritten by Simon Josefsson to use same credential variable as AUTH
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
58 ;; support below.
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
59
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
60 ;; Modified by Simon Josefsson <jas@pdc.kth.se>, 22/2/99, to support SMTP
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
61 ;; Authentication by the AUTH mechanism.
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
62 ;; See http://www.ietf.org/rfc/rfc2554.txt
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
63
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
64 ;; Modified by Simon Josefsson <simon@josefsson.org>, 2000-10-07, to support
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
65 ;; STARTTLS. Requires external program
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
66 ;; ftp://ftp.opaopa.org/pub/elisp/starttls-*.tar.gz.
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
67 ;; See http://www.ietf.org/rfc/rfc2246.txt, http://www.ietf.org/rfc/rfc2487.txt
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
68
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 ;;; Code:
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71 (require 'sendmail)
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
72 (autoload 'starttls-open-stream "starttls")
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
73 (autoload 'starttls-negotiate "starttls")
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
74 (autoload 'mail-strip-quoted-names "mail-utils")
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
75 (autoload 'message-make-date "message")
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
76 (autoload 'message-make-message-id "message")
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
77 (autoload 'rfc2104-hash "rfc2104")
44868
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
78 (autoload 'netrc-parse "netrc")
45179
6ff2c20da16e (netrc-machine, netrc-get): Add autoloads.
Richard M. Stallman <rms@gnu.org>
parents: 44883
diff changeset
79 (autoload 'netrc-machine "netrc")
6ff2c20da16e (netrc-machine, netrc-get): Add autoloads.
Richard M. Stallman <rms@gnu.org>
parents: 44883
diff changeset
80 (autoload 'netrc-get "netrc")
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82 ;;;
17436
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
83 (defgroup smtpmail nil
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
84 "SMTP protocol for sending mail."
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
85 :group 'mail)
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
86
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
87
17436
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
88 (defcustom smtpmail-default-smtp-server nil
47396
d7fa9253971f (smtpmail-default-smtp-server): Doc fix.
Simon Josefsson <jas@extundo.com>
parents: 47225
diff changeset
89 "*Specify default SMTP server.
d7fa9253971f (smtpmail-default-smtp-server): Doc fix.
Simon Josefsson <jas@extundo.com>
parents: 47225
diff changeset
90 This only has effect if you specify it before loading the smtpmail library."
17436
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
91 :type '(choice (const nil) string)
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
92 :group 'smtpmail)
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
93
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
94 (defcustom smtpmail-smtp-server
15451
89c1e7fe879a (smtpmail-smtp-service): Use port 25 as default.
Richard M. Stallman <rms@gnu.org>
parents: 15372
diff changeset
95 (or (getenv "SMTPSERVER") smtpmail-default-smtp-server)
17436
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
96 "*The name of the host running SMTP server."
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
97 :type '(choice (const nil) string)
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
98 :group 'smtpmail)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
99
17436
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
100 (defcustom smtpmail-smtp-service 25
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
101 "*SMTP service port number.
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
102 The default value would be \"smtp\" or 25 ."
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
103 :type '(choice (integer :tag "Port") (string :tag "Service"))
17436
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
104 :group 'smtpmail)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
105
17436
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
106 (defcustom smtpmail-local-domain nil
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
107 "*Local domain name without a host name.
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108 If the function (system-name) returns the full internet address,
17436
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
109 don't define this value."
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
110 :type '(choice (const nil) string)
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
111 :group 'smtpmail)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
112
26028
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
113 (defcustom smtpmail-sendto-domain nil
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
114 "*Local domain name without a host name.
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
115 This is appended (with an @-sign) to any specified recipients which do
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
116 not include an @-sign, so that each RCPT TO address is fully qualified.
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
117 \(Some configurations of sendmail require this.)
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
118
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
119 Don't bother to set this unless you have get an error like:
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
120 Sending failed; SMTP protocol error
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
121 when sending mail, and the *trace of SMTP session to <somewhere>*
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
122 buffer includes an exchange like:
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
123 RCPT TO: <someone>
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
124 501 <someone>: recipient address must contain a domain
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
125 "
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
126 :type '(choice (const nil) string)
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
127 :group 'smtpmail)
a0126ac842dc (smtpmail-via-smtp): Add support for
Gerd Moellmann <gerd@gnu.org>
parents: 24871
diff changeset
128
17436
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
129 (defcustom smtpmail-debug-info nil
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
130 "Whether to print info in buffer *trace of SMTP session to <somewhere>*.
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
131 See also `smtpmail-debug-verb' which determines if the SMTP protocol should
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
132 be verbose as well."
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
133 :type 'boolean
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
134 :group 'smtpmail)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
135
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
136 (defcustom smtpmail-debug-verb nil
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
137 "Whether this library sends the SMTP VERB command or not.
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
138 The commands enables verbose information from the SMTP server."
17436
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
139 :type 'boolean
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
140 :group 'smtpmail)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141
17436
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
142 (defcustom smtpmail-code-conv-from nil ;; *junet*
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
143 "*smtpmail code convert from this code to *internal*..for tiny-mime.."
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
144 :type 'boolean
2a9fdbfcb993 Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16907
diff changeset
145 :group 'smtpmail)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
147 (defcustom smtpmail-queue-mail nil
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
148 "*Specify if mail is queued (if t) or sent immediately (if nil).
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
149 If queued, it is stored in the directory `smtpmail-queue-dir'
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
150 and sent with `smtpmail-send-queued-mail'."
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
151 :type 'boolean
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
152 :group 'smtpmail)
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
153
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
154 (defcustom smtpmail-queue-dir "~/Mail/queued-mail/"
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
155 "*Directory where `smtpmail.el' stores queued mail."
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
156 :type 'directory
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
157 :group 'smtpmail)
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
158
44868
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
159 (defcustom smtpmail-auth-credentials "~/.authinfo"
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
160 "Specify username and password for servers, directly or via .netrc file.
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
161 This variable can either be a filename pointing to a file in netrc(5)
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
162 format, or list of four-element lists that contain, in order,
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
163 `servername' (a string), `port' (an integer), `user' (a string) and
44868
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
164 `password' (a string, or nil to query the user when needed). If you
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
165 need to enter a `realm' too, add it to the user string, so that it
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
166 looks like `user@realm'."
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
167 :type '(choice file
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
168 (repeat (list (string :tag "Server")
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
169 (integer :tag "Port")
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
170 (string :tag "Username")
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
171 (choice (const :tag "Query when needed" nil)
44868
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
172 (string :tag "Password")))))
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 59159
diff changeset
173 :version "22.1"
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
174 :group 'smtpmail)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
175
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
176 (defcustom smtpmail-starttls-credentials '(("" 25 "" ""))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
177 "Specify STARTTLS keys and certificates for servers.
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
178 This is a list of four-element list with `servername' (a string),
72671
b1e05ba6e2b1 2006-09-06 Simon Josefsson <jas@extundo.com>
Simon Josefsson <jas@extundo.com>
parents: 68648
diff changeset
179 `port' (an integer), `key' (a filename) and `certificate' (a
b1e05ba6e2b1 2006-09-06 Simon Josefsson <jas@extundo.com>
Simon Josefsson <jas@extundo.com>
parents: 68648
diff changeset
180 filename).
b1e05ba6e2b1 2006-09-06 Simon Josefsson <jas@extundo.com>
Simon Josefsson <jas@extundo.com>
parents: 68648
diff changeset
181 If you do not have a certificate/key pair, leave the `key' and
b1e05ba6e2b1 2006-09-06 Simon Josefsson <jas@extundo.com>
Simon Josefsson <jas@extundo.com>
parents: 68648
diff changeset
182 `certificate' fields as `nil'. A key/certificate pair is only
b1e05ba6e2b1 2006-09-06 Simon Josefsson <jas@extundo.com>
Simon Josefsson <jas@extundo.com>
parents: 68648
diff changeset
183 needed if you want to use X.509 client authenticated
b1e05ba6e2b1 2006-09-06 Simon Josefsson <jas@extundo.com>
Simon Josefsson <jas@extundo.com>
parents: 68648
diff changeset
184 connections."
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
185 :type '(repeat (list (string :tag "Server")
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
186 (integer :tag "Port")
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
187 (file :tag "Key")
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
188 (file :tag "Certificate")))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
189 :version "21.1"
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
190 :group 'smtpmail)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
191
37598
595c23d107f8 (smtpmail-warn-about-unknown-extensions): New
Gerd Moellmann <gerd@gnu.org>
parents: 26028
diff changeset
192 (defcustom smtpmail-warn-about-unknown-extensions nil
595c23d107f8 (smtpmail-warn-about-unknown-extensions): New
Gerd Moellmann <gerd@gnu.org>
parents: 26028
diff changeset
193 "*If set, print warnings about unknown SMTP extensions.
595c23d107f8 (smtpmail-warn-about-unknown-extensions): New
Gerd Moellmann <gerd@gnu.org>
parents: 26028
diff changeset
194 This is mainly useful for development purposes, to learn about
595c23d107f8 (smtpmail-warn-about-unknown-extensions): New
Gerd Moellmann <gerd@gnu.org>
parents: 26028
diff changeset
195 new SMTP extensions that might be useful to support."
595c23d107f8 (smtpmail-warn-about-unknown-extensions): New
Gerd Moellmann <gerd@gnu.org>
parents: 26028
diff changeset
196 :type 'boolean
37600
20c37aac51cd (smtpmail-warn-about-unknown-extensions): Add :version.
Gerd Moellmann <gerd@gnu.org>
parents: 37598
diff changeset
197 :version "21.1"
37598
595c23d107f8 (smtpmail-warn-about-unknown-extensions): New
Gerd Moellmann <gerd@gnu.org>
parents: 26028
diff changeset
198 :group 'smtpmail)
595c23d107f8 (smtpmail-warn-about-unknown-extensions): New
Gerd Moellmann <gerd@gnu.org>
parents: 26028
diff changeset
199
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
200 (defvar smtpmail-queue-index-file "index"
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
201 "File name of queued mail index,
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
202 This is relative to `smtpmail-queue-dir'.")
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
203
23444
a632871d7cfa (smtpmail-send-data-1): Use encode-coding-string.
Richard M. Stallman <rms@gnu.org>
parents: 23181
diff changeset
204 (defvar smtpmail-address-buffer)
a632871d7cfa (smtpmail-send-data-1): Use encode-coding-string.
Richard M. Stallman <rms@gnu.org>
parents: 23181
diff changeset
205 (defvar smtpmail-recipient-address-list)
a632871d7cfa (smtpmail-send-data-1): Use encode-coding-string.
Richard M. Stallman <rms@gnu.org>
parents: 23181
diff changeset
206
44864
c18dd95f6962 (smtpmail-queue-counter): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 42225
diff changeset
207 (defvar smtpmail-queue-counter 0)
c18dd95f6962 (smtpmail-queue-counter): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 42225
diff changeset
208
23444
a632871d7cfa (smtpmail-send-data-1): Use encode-coding-string.
Richard M. Stallman <rms@gnu.org>
parents: 23181
diff changeset
209 ;; Buffer-local variable.
a632871d7cfa (smtpmail-send-data-1): Use encode-coding-string.
Richard M. Stallman <rms@gnu.org>
parents: 23181
diff changeset
210 (defvar smtpmail-read-point)
a632871d7cfa (smtpmail-send-data-1): Use encode-coding-string.
Richard M. Stallman <rms@gnu.org>
parents: 23181
diff changeset
211
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
212 (defvar smtpmail-queue-index (concat smtpmail-queue-dir
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
213 smtpmail-queue-index-file))
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
214
64416
3b19cfc14a51 (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
Simon Josefsson <jas@extundo.com>
parents: 64414
diff changeset
215 (defconst smtpmail-auth-supported '(cram-md5 plain login)
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
216 "List of supported SMTP AUTH mechanisms.")
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
217
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 ;;;
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219 ;;;
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
220 ;;;
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
221
45252
ee1b06064fbb (smtpmail-mail-address): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 45204
diff changeset
222 (defvar smtpmail-mail-address nil
52321
e4b050573b12 (smtpmail-mail-address): Doc change.
Glenn Morris <rgm@gnu.org>
parents: 51895
diff changeset
223 "Value to use for envelope-from address for mail from ambient buffer.")
45252
ee1b06064fbb (smtpmail-mail-address): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 45204
diff changeset
224
23142
98c430cac424 (smtpmail-send-it): Add autoload cookie.
Karl Heuer <kwzh@gnu.org>
parents: 22037
diff changeset
225 ;;;###autoload
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
226 (defun smtpmail-send-it ()
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
227 (let ((errbuf (if mail-interactive
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
228 (generate-new-buffer " smtpmail errors")
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
229 0))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
230 (tembuf (generate-new-buffer " smtpmail temp"))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231 (case-fold-search nil)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
232 delimline
24773
424bc3b2a6ef (smtpmail-send-it): Bind
Kenichi Handa <handa@m17n.org>
parents: 24663
diff changeset
233 (mailbuf (current-buffer))
52347
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
234 ;; Examine this variable now, so that
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
235 ;; local binding in the mail buffer will take effect.
52321
e4b050573b12 (smtpmail-mail-address): Doc change.
Glenn Morris <rgm@gnu.org>
parents: 51895
diff changeset
236 (smtpmail-mail-address
e4b050573b12 (smtpmail-mail-address): Doc change.
Glenn Morris <rgm@gnu.org>
parents: 51895
diff changeset
237 (or (and mail-specify-envelope-from (mail-envelope-from))
e4b050573b12 (smtpmail-mail-address): Doc change.
Glenn Morris <rgm@gnu.org>
parents: 51895
diff changeset
238 user-mail-address))
24773
424bc3b2a6ef (smtpmail-send-it): Bind
Kenichi Handa <handa@m17n.org>
parents: 24663
diff changeset
239 (smtpmail-code-conv-from
424bc3b2a6ef (smtpmail-send-it): Bind
Kenichi Handa <handa@m17n.org>
parents: 24663
diff changeset
240 (if enable-multibyte-characters
424bc3b2a6ef (smtpmail-send-it): Bind
Kenichi Handa <handa@m17n.org>
parents: 24663
diff changeset
241 (let ((sendmail-coding-system smtpmail-code-conv-from))
424bc3b2a6ef (smtpmail-send-it): Bind
Kenichi Handa <handa@m17n.org>
parents: 24663
diff changeset
242 (select-message-coding-system)))))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243 (unwind-protect
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244 (save-excursion
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 (set-buffer tembuf)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
246 (erase-buffer)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
247 (insert-buffer-substring mailbuf)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248 (goto-char (point-max))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 ;; require one newline at the end.
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250 (or (= (preceding-char) ?\n)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251 (insert ?\n))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
252 ;; Change header-delimiter to be what sendmail expects.
21862
c0569fcdef88 (smtpmail-send-it): Use mail-sendmail-undelimit-header.
Richard M. Stallman <rms@gnu.org>
parents: 21683
diff changeset
253 (mail-sendmail-undelimit-header)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
254 (setq delimline (point-marker))
15451
89c1e7fe879a (smtpmail-smtp-service): Use port 25 as default.
Richard M. Stallman <rms@gnu.org>
parents: 15372
diff changeset
255 ;; (sendmail-synch-aliases)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
256 (if mail-aliases
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
257 (expand-mail-aliases (point-min) delimline))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
258 (goto-char (point-min))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
259 ;; ignore any blank lines in the header
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
260 (while (and (re-search-forward "\n\n\n*" delimline t)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
261 (< (point) delimline))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
262 (replace-match "\n"))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263 (let ((case-fold-search t))
21683
dfb671ba22f8 (smtpmail-send-it): Deleted all code related to Resent-To: processing.
Richard M. Stallman <rms@gnu.org>
parents: 20058
diff changeset
264 ;; We used to process Resent-... headers here,
dfb671ba22f8 (smtpmail-send-it): Deleted all code related to Resent-To: processing.
Richard M. Stallman <rms@gnu.org>
parents: 20058
diff changeset
265 ;; but it was not done properly, and the job
dfb671ba22f8 (smtpmail-send-it): Deleted all code related to Resent-To: processing.
Richard M. Stallman <rms@gnu.org>
parents: 20058
diff changeset
266 ;; is done correctly in smtpmail-deduce-address-list.
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
267 ;; Don't send out a blank subject line
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
268 (goto-char (point-min))
21683
dfb671ba22f8 (smtpmail-send-it): Deleted all code related to Resent-To: processing.
Richard M. Stallman <rms@gnu.org>
parents: 20058
diff changeset
269 (if (re-search-forward "^Subject:\\([ \t]*\n\\)+\\b" delimline t)
dfb671ba22f8 (smtpmail-send-it): Deleted all code related to Resent-To: processing.
Richard M. Stallman <rms@gnu.org>
parents: 20058
diff changeset
270 (replace-match "")
dfb671ba22f8 (smtpmail-send-it): Deleted all code related to Resent-To: processing.
Richard M. Stallman <rms@gnu.org>
parents: 20058
diff changeset
271 ;; This one matches a Subject just before the header delimiter.
dfb671ba22f8 (smtpmail-send-it): Deleted all code related to Resent-To: processing.
Richard M. Stallman <rms@gnu.org>
parents: 20058
diff changeset
272 (if (and (re-search-forward "^Subject:\\([ \t]*\n\\)+" delimline t)
dfb671ba22f8 (smtpmail-send-it): Deleted all code related to Resent-To: processing.
Richard M. Stallman <rms@gnu.org>
parents: 20058
diff changeset
273 (= (match-end 0) delimline))
dfb671ba22f8 (smtpmail-send-it): Deleted all code related to Resent-To: processing.
Richard M. Stallman <rms@gnu.org>
parents: 20058
diff changeset
274 (replace-match "")))
15452
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
275 ;; Put the "From:" field in unless for some odd reason
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
276 ;; they put one in themselves.
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
277 (goto-char (point-min))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
278 (if (not (re-search-forward "^From:" delimline t))
45252
ee1b06064fbb (smtpmail-mail-address): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 45204
diff changeset
279 (let* ((login smtpmail-mail-address)
15452
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
280 (fullname (user-full-name)))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
281 (cond ((eq mail-from-style 'angles)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
282 (insert "From: " fullname)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
283 (let ((fullname-start (+ (point-min) 6))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
284 (fullname-end (point-marker)))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
285 (goto-char fullname-start)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
286 ;; Look for a character that cannot appear unquoted
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
287 ;; according to RFC 822.
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
288 (if (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]"
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
289 fullname-end 1)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
290 (progn
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
291 ;; Quote fullname, escaping specials.
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
292 (goto-char fullname-start)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
293 (insert "\"")
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
294 (while (re-search-forward "[\"\\]"
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
295 fullname-end 1)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
296 (replace-match "\\\\\\&" t))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
297 (insert "\""))))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
298 (insert " <" login ">\n"))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
299 ((eq mail-from-style 'parens)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
300 (insert "From: " login " (")
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
301 (let ((fullname-start (point)))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
302 (insert fullname)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
303 (let ((fullname-end (point-marker)))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
304 (goto-char fullname-start)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
305 ;; RFC 822 says \ and nonmatching parentheses
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
306 ;; must be escaped in comments.
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
307 ;; Escape every instance of ()\ ...
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
308 (while (re-search-forward "[()\\]" fullname-end 1)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
309 (replace-match "\\\\\\&" t))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
310 ;; ... then undo escaping of matching parentheses,
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
311 ;; including matching nested parentheses.
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
312 (goto-char fullname-start)
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
313 (while (re-search-forward
15452
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
314 "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
315 fullname-end 1)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
316 (replace-match "\\1(\\3)" t)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
317 (goto-char fullname-start))))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
318 (insert ")\n"))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
319 ((null mail-from-style)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
320 (insert "From: " login "\n")))))
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
321 ;; Insert a `Message-Id:' field if there isn't one yet.
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
322 (goto-char (point-min))
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
323 (unless (re-search-forward "^Message-Id:" delimline t)
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
324 (insert "Message-Id: " (message-make-message-id) "\n"))
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
325 ;; Insert a `Date:' field if there isn't one yet.
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
326 (goto-char (point-min))
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
327 (unless (re-search-forward "^Date:" delimline t)
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
328 (insert "Date: " (message-make-date) "\n"))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
329 ;; Insert an extra newline if we need it to work around
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
330 ;; Sun's bug that swallows newlines.
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
331 (goto-char (1+ delimline))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
332 (if (eval mail-mailer-swallows-blank-line)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
333 (newline))
15452
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
334 ;; Find and handle any FCC fields.
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
335 (goto-char (point-min))
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
336 (if (re-search-forward "^FCC:" delimline t)
6f41e17b3452 (smtpmail-send-it): Don't handle FCC fields until after determining FROM field.
Richard M. Stallman <rms@gnu.org>
parents: 15451
diff changeset
337 (mail-do-fcc delimline))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
338 (if mail-interactive
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
339 (with-current-buffer errbuf
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340 (erase-buffer))))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
341 ;;
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
342 ;;
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
343 ;;
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
344 (setq smtpmail-address-buffer (generate-new-buffer "*smtp-mail*"))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
345 (setq smtpmail-recipient-address-list
21683
dfb671ba22f8 (smtpmail-send-it): Deleted all code related to Resent-To: processing.
Richard M. Stallman <rms@gnu.org>
parents: 20058
diff changeset
346 (smtpmail-deduce-address-list tembuf (point-min) delimline))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347 (kill-buffer smtpmail-address-buffer)
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
348
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
349 (smtpmail-do-bcc delimline)
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
350 ; Send or queue
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
351 (if (not smtpmail-queue-mail)
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
352 (if (not (null smtpmail-recipient-address-list))
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
353 (if (not (smtpmail-via-smtp
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
354 smtpmail-recipient-address-list tembuf))
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
355 (error "Sending failed; SMTP protocol error"))
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
356 (error "Sending failed; no recipients"))
47436
dc7ce8219431 (smtpmail-send-it): Don't use : in filenames
Simon Josefsson <jas@extundo.com>
parents: 47396
diff changeset
357 (let* ((file-data
dc7ce8219431 (smtpmail-send-it): Don't use : in filenames
Simon Josefsson <jas@extundo.com>
parents: 47396
diff changeset
358 (expand-file-name
dc7ce8219431 (smtpmail-send-it): Don't use : in filenames
Simon Josefsson <jas@extundo.com>
parents: 47396
diff changeset
359 (format "%s_%i"
dc7ce8219431 (smtpmail-send-it): Don't use : in filenames
Simon Josefsson <jas@extundo.com>
parents: 47396
diff changeset
360 (format-time-string "%Y-%m-%d_%H:%M:%S")
dc7ce8219431 (smtpmail-send-it): Don't use : in filenames
Simon Josefsson <jas@extundo.com>
parents: 47396
diff changeset
361 (setq smtpmail-queue-counter
dc7ce8219431 (smtpmail-send-it): Don't use : in filenames
Simon Josefsson <jas@extundo.com>
parents: 47396
diff changeset
362 (1+ smtpmail-queue-counter)))
dc7ce8219431 (smtpmail-send-it): Don't use : in filenames
Simon Josefsson <jas@extundo.com>
parents: 47396
diff changeset
363 smtpmail-queue-dir))
dc7ce8219431 (smtpmail-send-it): Don't use : in filenames
Simon Josefsson <jas@extundo.com>
parents: 47396
diff changeset
364 (file-data (convert-standard-filename file-data))
dc7ce8219431 (smtpmail-send-it): Don't use : in filenames
Simon Josefsson <jas@extundo.com>
parents: 47396
diff changeset
365 (file-elisp (concat file-data ".el"))
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
366 (buffer-data (create-file-buffer file-data))
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
367 (buffer-elisp (create-file-buffer file-elisp))
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
368 (buffer-scratch "*queue-mail*"))
51895
2f47cd5fd50d (smtpmail-send-it): Create smtpmail-queue-dir if it doesn't exist.
Juanma Barranquero <lekktu@gmail.com>
parents: 50973
diff changeset
369 (unless (file-exists-p smtpmail-queue-dir)
2f47cd5fd50d (smtpmail-send-it): Create smtpmail-queue-dir if it doesn't exist.
Juanma Barranquero <lekktu@gmail.com>
parents: 50973
diff changeset
370 (make-directory smtpmail-queue-dir t))
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
371 (with-current-buffer buffer-data
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
372 (erase-buffer)
68250
3db62d37041f (smtpmail-send-it): Use insert-buffer-substring.
Jesper Harder <harder@ifa.au.dk>
parents: 68117
diff changeset
373 (insert-buffer-substring tembuf)
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
374 (write-file file-data)
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
375 (set-buffer buffer-elisp)
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
376 (erase-buffer)
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
377 (insert (concat
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
378 "(setq smtpmail-recipient-address-list '"
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
379 (prin1-to-string smtpmail-recipient-address-list)
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
380 ")\n"))
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
381 (write-file file-elisp)
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
382 (set-buffer (generate-new-buffer buffer-scratch))
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
383 (insert (concat file-data "\n"))
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
384 (append-to-file (point-min)
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
385 (point-max)
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
386 smtpmail-queue-index)
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
387 )
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
388 (kill-buffer buffer-scratch)
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
389 (kill-buffer buffer-data)
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
390 (kill-buffer buffer-elisp))))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
391 (kill-buffer tembuf)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
392 (if (bufferp errbuf)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
393 (kill-buffer errbuf)))))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
394
48419
03ac1463ec5e (smtpmail-send-queued-mail): Add autoload cookie.
Juanma Barranquero <lekktu@gmail.com>
parents: 47837
diff changeset
395 ;;;###autoload
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
396 (defun smtpmail-send-queued-mail ()
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
397 "Send mail that was queued as a result of setting `smtpmail-queue-mail'."
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
398 (interactive)
42225
8ef1ae58dc29 (smtpmail-send-queued-mail): Use
Eli Zaretskii <eliz@gnu.org>
parents: 41921
diff changeset
399 (with-temp-buffer
8ef1ae58dc29 (smtpmail-send-queued-mail): Use
Eli Zaretskii <eliz@gnu.org>
parents: 41921
diff changeset
400 ;;; Get index, get first mail, send it, update index, get second
8ef1ae58dc29 (smtpmail-send-queued-mail): Use
Eli Zaretskii <eliz@gnu.org>
parents: 41921
diff changeset
401 ;;; mail, send it, etc...
8ef1ae58dc29 (smtpmail-send-queued-mail): Use
Eli Zaretskii <eliz@gnu.org>
parents: 41921
diff changeset
402 (let ((file-msg ""))
8ef1ae58dc29 (smtpmail-send-queued-mail): Use
Eli Zaretskii <eliz@gnu.org>
parents: 41921
diff changeset
403 (insert-file-contents smtpmail-queue-index)
62621
078b075e8984 (smtpmail-open-stream): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents: 62402
diff changeset
404 (goto-char (point-min))
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
405 (while (not (eobp))
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
406 (setq file-msg (buffer-substring (point) (line-end-position)))
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
407 (load file-msg)
41921
de4a90cd0a5f (smtpmail-send-queued-mail): Insert the enqueued messages literally.
Eli Zaretskii <eliz@gnu.org>
parents: 41716
diff changeset
408 ;; Insert the message literally: it is already encoded as per
de4a90cd0a5f (smtpmail-send-queued-mail): Insert the enqueued messages literally.
Eli Zaretskii <eliz@gnu.org>
parents: 41716
diff changeset
409 ;; the MIME headers, and code conversions might guess the
de4a90cd0a5f (smtpmail-send-queued-mail): Insert the enqueued messages literally.
Eli Zaretskii <eliz@gnu.org>
parents: 41716
diff changeset
410 ;; encoding wrongly.
42225
8ef1ae58dc29 (smtpmail-send-queued-mail): Use
Eli Zaretskii <eliz@gnu.org>
parents: 41921
diff changeset
411 (with-temp-buffer
8ef1ae58dc29 (smtpmail-send-queued-mail): Use
Eli Zaretskii <eliz@gnu.org>
parents: 41921
diff changeset
412 (let ((coding-system-for-read 'no-conversion))
8ef1ae58dc29 (smtpmail-send-queued-mail): Use
Eli Zaretskii <eliz@gnu.org>
parents: 41921
diff changeset
413 (insert-file-contents file-msg))
52347
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
414 (let ((smtpmail-mail-address
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
415 (or (and mail-specify-envelope-from (mail-envelope-from))
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
416 user-mail-address)))
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
417 (if (not (null smtpmail-recipient-address-list))
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
418 (if (not (smtpmail-via-smtp smtpmail-recipient-address-list
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
419 (current-buffer)))
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
420 (error "Sending failed; SMTP protocol error"))
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
421 (error "Sending failed; no recipients"))))
18094
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
422 (delete-file file-msg)
54cf1b43247b Include time-stamp.
Richard M. Stallman <rms@gnu.org>
parents: 18092
diff changeset
423 (delete-file (concat file-msg ".el"))
50931
0ef58c420b53 (smtpmail-send-queued-mail): Use point-at-bol instead of forward-line.
Juanma Barranquero <lekktu@gmail.com>
parents: 50912
diff changeset
424 (delete-region (point-at-bol) (point-at-bol 2)))
42225
8ef1ae58dc29 (smtpmail-send-queued-mail): Use
Eli Zaretskii <eliz@gnu.org>
parents: 41921
diff changeset
425 (write-region (point-min) (point-max) smtpmail-queue-index))))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
426
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
427 ;(defun smtpmail-via-smtp (host,port,sender,destination,smtpmail-text-buffer)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
428
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
429 (defun smtpmail-fqdn ()
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
430 (if smtpmail-local-domain
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
431 (concat (system-name) "." smtpmail-local-domain)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
432 (system-name)))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
433
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
434 (defsubst smtpmail-cred-server (cred)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
435 (nth 0 cred))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
436
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
437 (defsubst smtpmail-cred-port (cred)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
438 (nth 1 cred))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
439
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
440 (defsubst smtpmail-cred-key (cred)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
441 (nth 2 cred))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
442
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
443 (defsubst smtpmail-cred-user (cred)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
444 (nth 2 cred))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
445
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
446 (defsubst smtpmail-cred-cert (cred)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
447 (nth 3 cred))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
448
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
449 (defsubst smtpmail-cred-passwd (cred)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
450 (nth 3 cred))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
451
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
452 (defun smtpmail-find-credentials (cred server port)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
453 (catch 'done
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
454 (let ((l cred) el)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
455 (while (setq el (pop l))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
456 (when (and (equal server (smtpmail-cred-server el))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
457 (equal port (smtpmail-cred-port el)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
458 (throw 'done el))))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
459
37800
9cddd888d25f (maybe-append-domain): Renamed to
Gerd Moellmann <gerd@gnu.org>
parents: 37600
diff changeset
460 (defun smtpmail-maybe-append-domain (recipient)
9cddd888d25f (maybe-append-domain): Renamed to
Gerd Moellmann <gerd@gnu.org>
parents: 37600
diff changeset
461 (if (or (not smtpmail-sendto-domain)
9cddd888d25f (maybe-append-domain): Renamed to
Gerd Moellmann <gerd@gnu.org>
parents: 37600
diff changeset
462 (string-match "@" recipient))
9cddd888d25f (maybe-append-domain): Renamed to
Gerd Moellmann <gerd@gnu.org>
parents: 37600
diff changeset
463 recipient
9cddd888d25f (maybe-append-domain): Renamed to
Gerd Moellmann <gerd@gnu.org>
parents: 37600
diff changeset
464 (concat recipient "@" smtpmail-sendto-domain)))
9cddd888d25f (maybe-append-domain): Renamed to
Gerd Moellmann <gerd@gnu.org>
parents: 37600
diff changeset
465
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
466 (defun smtpmail-intersection (list1 list2)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
467 (let ((result nil))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
468 (dolist (el2 list2)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
469 (when (memq el2 list1)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
470 (push el2 result)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
471 (nreverse result)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
472
62621
078b075e8984 (smtpmail-open-stream): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents: 62402
diff changeset
473 (defvar starttls-extra-args)
078b075e8984 (smtpmail-open-stream): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents: 62402
diff changeset
474 (defvar starttls-extra-arguments)
078b075e8984 (smtpmail-open-stream): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents: 62402
diff changeset
475
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
476 (defun smtpmail-open-stream (process-buffer host port)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
477 (let ((cred (smtpmail-find-credentials
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
478 smtpmail-starttls-credentials host port)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
479 (if (null (and cred (condition-case ()
62621
078b075e8984 (smtpmail-open-stream): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents: 62402
diff changeset
480 (with-no-warnings
50973
7f434a265bfa (smtpmail-open-stream): Don't hard code
Simon Josefsson <jas@extundo.com>
parents: 50931
diff changeset
481 (require 'starttls)
57435
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
482 (call-process (if starttls-use-gnutls
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
483 starttls-gnutls-program
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
484 starttls-program)))
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
485 (error nil))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
486 ;; The normal case.
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
487 (open-network-stream "SMTP" process-buffer host port)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
488 (let* ((cred-key (smtpmail-cred-key cred))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
489 (cred-cert (smtpmail-cred-cert cred))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
490 (starttls-extra-args
57435
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
491 (append
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
492 starttls-extra-args
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
493 (when (and (stringp cred-key) (stringp cred-cert)
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
494 (file-regular-p
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
495 (setq cred-key (expand-file-name cred-key)))
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
496 (file-regular-p
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
497 (setq cred-cert (expand-file-name cred-cert))))
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
498 (list "--key-file" cred-key "--cert-file" cred-cert))))
55786
a4b0f825c65a (smtpmail-open-stream): Bind
Simon Josefsson <jas@extundo.com>
parents: 54763
diff changeset
499 (starttls-extra-arguments
57435
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
500 (append
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
501 starttls-extra-arguments
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
502 (when (and (stringp cred-key) (stringp cred-cert)
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
503 (file-regular-p
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
504 (setq cred-key (expand-file-name cred-key)))
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
505 (file-regular-p
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
506 (setq cred-cert (expand-file-name cred-cert))))
2b938e7f92a5 (smtpmail-open-stream): Look for
Simon Josefsson <jas@extundo.com>
parents: 55786
diff changeset
507 (list "--x509keyfile" cred-key "--x509certfile" cred-cert)))))
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
508 (starttls-open-stream "SMTP" process-buffer host port)))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
509
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
510 (defun smtpmail-try-auth-methods (process supported-extensions host port)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
511 (let* ((mechs (cdr-safe (assoc 'auth supported-extensions)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
512 (mech (car (smtpmail-intersection smtpmail-auth-supported mechs)))
44868
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
513 (cred (if (stringp smtpmail-auth-credentials)
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
514 (let* ((netrc (netrc-parse smtpmail-auth-credentials))
53807
61abf9ce6838 (smtpmail-try-auth-methods): Pass port-name as defaultport to `netrc-machine'.
Sam Steingold <sds@gnu.org>
parents: 53641
diff changeset
515 (port-name (format "%s" (or port "smtp")))
61abf9ce6838 (smtpmail-try-auth-methods): Pass port-name as defaultport to `netrc-machine'.
Sam Steingold <sds@gnu.org>
parents: 53641
diff changeset
516 (hostentry (netrc-machine netrc host port-name
61abf9ce6838 (smtpmail-try-auth-methods): Pass port-name as defaultport to `netrc-machine'.
Sam Steingold <sds@gnu.org>
parents: 53641
diff changeset
517 port-name)))
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
518 (when hostentry
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
519 (list host port
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
520 (netrc-get hostentry "login")
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
521 (netrc-get hostentry "password"))))
44868
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
522 (smtpmail-find-credentials
53919
095e499a14ad (smtpmail-try-auth-methods): Fix typo.
John Paul Wallington <jpw@pobox.com>
parents: 53807
diff changeset
523 smtpmail-auth-credentials host port)))
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
524 (passwd (when cred
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
525 (or (smtpmail-cred-passwd cred)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
526 (read-passwd
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
527 (format "SMTP password for %s:%s: "
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
528 (smtpmail-cred-server cred)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
529 (smtpmail-cred-port cred))))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
530 ret)
53807
61abf9ce6838 (smtpmail-try-auth-methods): Pass port-name as defaultport to `netrc-machine'.
Sam Steingold <sds@gnu.org>
parents: 53641
diff changeset
531 (when (and cred mech)
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
532 (cond
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
533 ((eq mech 'cram-md5)
59159
e6d896f96885 Fix last commit.
Simon Josefsson <jas@extundo.com>
parents: 59098
diff changeset
534 (smtpmail-send-command process (upcase (format "AUTH %s" mech)))
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
535 (if (or (null (car (setq ret (smtpmail-read-response process))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
536 (not (integerp (car ret)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
537 (>= (car ret) 400))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
538 (throw 'done nil))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
539 (when (eq (car ret) 334)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
540 (let* ((challenge (substring (cadr ret) 4))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
541 (decoded (base64-decode-string challenge))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
542 (hash (rfc2104-hash 'md5 64 16 passwd decoded))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
543 (response (concat (smtpmail-cred-user cred) " " hash))
73148
6887b498642b * mail/smtpmail.el (smtpmail-try-auth-methods): Do not break long
Chong Yidong <cyd@stupidchicken.com>
parents: 72671
diff changeset
544 (encoded (base64-encode-string response t)))
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
545 (smtpmail-send-command process (format "%s" encoded))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
546 (if (or (null (car (setq ret (smtpmail-read-response process))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
547 (not (integerp (car ret)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
548 (>= (car ret) 400))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
549 (throw 'done nil)))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
550 ((eq mech 'login)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
551 (smtpmail-send-command process "AUTH LOGIN")
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
552 (if (or (null (car (setq ret (smtpmail-read-response process))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
553 (not (integerp (car ret)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
554 (>= (car ret) 400))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
555 (throw 'done nil))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
556 (smtpmail-send-command
73215
32b78c90379a 2006-10-02 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
Simon Josefsson <jas@extundo.com>
parents: 73148
diff changeset
557 process (base64-encode-string (smtpmail-cred-user cred) t))
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
558 (if (or (null (car (setq ret (smtpmail-read-response process))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
559 (not (integerp (car ret)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
560 (>= (car ret) 400))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
561 (throw 'done nil))
73148
6887b498642b * mail/smtpmail.el (smtpmail-try-auth-methods): Do not break long
Chong Yidong <cyd@stupidchicken.com>
parents: 72671
diff changeset
562 (smtpmail-send-command process (base64-encode-string passwd t))
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
563 (if (or (null (car (setq ret (smtpmail-read-response process))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
564 (not (integerp (car ret)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
565 (>= (car ret) 400))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
566 (throw 'done nil)))
64414
84d21f8fafbb (smtpmail-auth-supported): Added the 'plain auth method
Simon Josefsson <jas@extundo.com>
parents: 64085
diff changeset
567 ((eq mech 'plain)
68117
340b01243a62 Add comment describing AUTH PLAIN fix.
Simon Josefsson <jas@extundo.com>
parents: 67873
diff changeset
568 ;; We used to send an empty initial request, and wait for an
340b01243a62 Add comment describing AUTH PLAIN fix.
Simon Josefsson <jas@extundo.com>
parents: 67873
diff changeset
569 ;; empty response, and then send the password, but this
340b01243a62 Add comment describing AUTH PLAIN fix.
Simon Josefsson <jas@extundo.com>
parents: 67873
diff changeset
570 ;; violate a SHOULD in RFC 2222 paragraph 5.1. Note that this
340b01243a62 Add comment describing AUTH PLAIN fix.
Simon Josefsson <jas@extundo.com>
parents: 67873
diff changeset
571 ;; is not sent if the server did not advertise AUTH PLAIN in
340b01243a62 Add comment describing AUTH PLAIN fix.
Simon Josefsson <jas@extundo.com>
parents: 67873
diff changeset
572 ;; the EHLO response. See RFC 2554 for more info.
67873
51ca2759364a Fix AUTH PLAIN authentication.
Simon Josefsson <jas@extundo.com>
parents: 67424
diff changeset
573 (smtpmail-send-command process
51ca2759364a Fix AUTH PLAIN authentication.
Simon Josefsson <jas@extundo.com>
parents: 67424
diff changeset
574 (concat "AUTH PLAIN "
51ca2759364a Fix AUTH PLAIN authentication.
Simon Josefsson <jas@extundo.com>
parents: 67424
diff changeset
575 (base64-encode-string
64414
84d21f8fafbb (smtpmail-auth-supported): Added the 'plain auth method
Simon Josefsson <jas@extundo.com>
parents: 64085
diff changeset
576 (concat "\0"
84d21f8fafbb (smtpmail-auth-supported): Added the 'plain auth method
Simon Josefsson <jas@extundo.com>
parents: 64085
diff changeset
577 (smtpmail-cred-user cred)
84d21f8fafbb (smtpmail-auth-supported): Added the 'plain auth method
Simon Josefsson <jas@extundo.com>
parents: 64085
diff changeset
578 "\0"
73148
6887b498642b * mail/smtpmail.el (smtpmail-try-auth-methods): Do not break long
Chong Yidong <cyd@stupidchicken.com>
parents: 72671
diff changeset
579 passwd) t)))
64414
84d21f8fafbb (smtpmail-auth-supported): Added the 'plain auth method
Simon Josefsson <jas@extundo.com>
parents: 64085
diff changeset
580 (if (or (null (car (setq ret (smtpmail-read-response process))))
84d21f8fafbb (smtpmail-auth-supported): Added the 'plain auth method
Simon Josefsson <jas@extundo.com>
parents: 64085
diff changeset
581 (not (integerp (car ret)))
84d21f8fafbb (smtpmail-auth-supported): Added the 'plain auth method
Simon Josefsson <jas@extundo.com>
parents: 64085
diff changeset
582 (not (equal (car ret) 235)))
84d21f8fafbb (smtpmail-auth-supported): Added the 'plain auth method
Simon Josefsson <jas@extundo.com>
parents: 64085
diff changeset
583 (throw 'done nil)))
84d21f8fafbb (smtpmail-auth-supported): Added the 'plain auth method
Simon Josefsson <jas@extundo.com>
parents: 64085
diff changeset
584
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
585 (t
64414
84d21f8fafbb (smtpmail-auth-supported): Added the 'plain auth method
Simon Josefsson <jas@extundo.com>
parents: 64085
diff changeset
586 (error "Mechanism %s not implemented" mech)))
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
587 ;; Remember the password.
44868
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
588 (when (and (not (stringp smtpmail-auth-credentials))
865b7fdda4bb (smtpmail-auth-credentials): Support netrc files as well.
Richard M. Stallman <rms@gnu.org>
parents: 44864
diff changeset
589 (null (smtpmail-cred-passwd cred)))
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
590 (setcar (cdr (cdr (cdr cred))) passwd)))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
591
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
592 (defun smtpmail-via-smtp (recipient smtpmail-text-buffer)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
593 (let ((process nil)
23142
98c430cac424 (smtpmail-send-it): Add autoload cookie.
Karl Heuer <kwzh@gnu.org>
parents: 22037
diff changeset
594 (host (or smtpmail-smtp-server
98c430cac424 (smtpmail-send-it): Add autoload cookie.
Karl Heuer <kwzh@gnu.org>
parents: 22037
diff changeset
595 (error "`smtpmail-smtp-server' not defined")))
15346
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
596 (port smtpmail-smtp-service)
52347
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
597 ;; smtpmail-mail-address should be set to the appropriate
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
598 ;; buffer-local value by the caller, but in case not:
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
599 (envelope-from (or smtpmail-mail-address
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
600 (and mail-specify-envelope-from
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
601 (mail-envelope-from))
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
602 user-mail-address))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
603 response-code
15346
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
604 greeting
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
605 process-buffer
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
606 (supported-extensions '()))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
607 (unwind-protect
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
608 (catch 'done
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
609 ;; get or create the trace buffer
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
610 (setq process-buffer
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
611 (get-buffer-create (format "*trace of SMTP session to %s*" host)))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
612
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
613 ;; clear the trace buffer of old output
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
614 (with-current-buffer process-buffer
67424
02c3cfe8d00b (smtpmail-via-smtp): Disable undo in SMTP buffer.
Kim F. Storm <storm@cua.dk>
parents: 67347
diff changeset
615 (setq buffer-undo-list t)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
616 (erase-buffer))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
617
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
618 ;; open the connection to the server
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
619 (setq process (smtpmail-open-stream process-buffer host port))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
620 (and (null process) (throw 'done nil))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
621
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
622 ;; set the send-filter
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
623 (set-process-filter process 'smtpmail-process-filter)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
624
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
625 (with-current-buffer process-buffer
22037
cb95bfcd442a (smtpmail-via-smtp): Speciy process coding system.
Richard M. Stallman <rms@gnu.org>
parents: 21862
diff changeset
626 (set-buffer-process-coding-system 'raw-text-unix 'raw-text-unix)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
627 (make-local-variable 'smtpmail-read-point)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
628 (setq smtpmail-read-point (point-min))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
629
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
630
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
631 (if (or (null (car (setq greeting (smtpmail-read-response process))))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
632 (not (integerp (car greeting)))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
633 (>= (car greeting) 400))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
634 (throw 'done nil)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
635 )
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
636
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
637 (let ((do-ehlo t)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
638 (do-starttls t))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
639 (while do-ehlo
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
640 ;; EHLO
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
641 (smtpmail-send-command process (format "EHLO %s" (smtpmail-fqdn)))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
642
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
643 (if (or (null (car (setq response-code
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
644 (smtpmail-read-response process))))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
645 (not (integerp (car response-code)))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
646 (>= (car response-code) 400))
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
647 (progn
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
648 ;; HELO
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
649 (smtpmail-send-command
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
650 process (format "HELO %s" (smtpmail-fqdn)))
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
651
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
652 (if (or (null (car (setq response-code
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
653 (smtpmail-read-response process))))
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
654 (not (integerp (car response-code)))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
655 (>= (car response-code) 400))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
656 (throw 'done nil)))
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
657 (dolist (line (cdr (cdr response-code)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
658 (let ((name (mapcar (lambda (s) (intern (downcase s)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
659 (split-string (substring line 4) "[ ]"))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
660 (and (eq (length name) 1)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
661 (setq name (car name)))
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
662 (and name
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
663 (cond ((memq (if (consp name) (car name) name)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
664 '(verb xvrb 8bitmime onex xone
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
665 expn size dsn etrn
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
666 enhancedstatuscodes
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
667 help xusr
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
668 auth=login auth starttls))
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
669 (setq supported-extensions
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
670 (cons name supported-extensions)))
37598
595c23d107f8 (smtpmail-warn-about-unknown-extensions): New
Gerd Moellmann <gerd@gnu.org>
parents: 26028
diff changeset
671 (smtpmail-warn-about-unknown-extensions
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
672 (message "Unknown extension %s" name)))))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
673
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
674 (if (and do-starttls
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
675 (smtpmail-find-credentials smtpmail-starttls-credentials host port)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
676 (member 'starttls supported-extensions)
47672
666b84b52b82 (smtpmail-via-smtp): Only negotiate starttls on
Simon Josefsson <jas@extundo.com>
parents: 47436
diff changeset
677 (numberp (process-id process)))
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
678 (progn
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
679 (smtpmail-send-command process (format "STARTTLS"))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
680 (if (or (null (car (setq response-code (smtpmail-read-response process))))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
681 (not (integerp (car response-code)))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
682 (>= (car response-code) 400))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
683 (throw 'done nil))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
684 (starttls-negotiate process)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
685 (setq do-starttls nil))
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
686 (setq do-ehlo nil))))
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
687
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
688 (smtpmail-try-auth-methods process supported-extensions host port)
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
689
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
690 (if (or (member 'onex supported-extensions)
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
691 (member 'xone supported-extensions))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
692 (progn
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
693 (smtpmail-send-command process (format "ONEX"))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
694 (if (or (null (car (setq response-code (smtpmail-read-response process))))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
695 (not (integerp (car response-code)))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
696 (>= (car response-code) 400))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
697 (throw 'done nil))))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
698
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
699 (if (and smtpmail-debug-verb
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
700 (or (member 'verb supported-extensions)
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
701 (member 'xvrb supported-extensions)))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
702 (progn
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
703 (smtpmail-send-command process (format "VERB"))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
704 (if (or (null (car (setq response-code (smtpmail-read-response process))))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
705 (not (integerp (car response-code)))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
706 (>= (car response-code) 400))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
707 (throw 'done nil))))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
708
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
709 (if (member 'xusr supported-extensions)
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
710 (progn
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
711 (smtpmail-send-command process (format "XUSR"))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
712 (if (or (null (car (setq response-code (smtpmail-read-response process))))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
713 (not (integerp (car response-code)))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
714 (>= (car response-code) 400))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
715 (throw 'done nil))))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
716
52642
79320037f627 (smtpmail-via-smtp): Don't insert a space
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
717 ;; MAIL FROM:<sender>
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
718 (let ((size-part
41221
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
719 (if (or (member 'size supported-extensions)
b6fd3363a398 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
Richard M. Stallman <rms@gnu.org>
parents: 40033
diff changeset
720 (assoc 'size supported-extensions))
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
721 (format " SIZE=%d"
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
722 (with-current-buffer smtpmail-text-buffer
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
723 ;; size estimate:
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
724 (+ (- (point-max) (point-min))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
725 ;; Add one byte for each change-of-line
53641
e33121530d13 Jesper Harder <harder@ifa.au.dk>
Glenn Morris <rgm@gnu.org>
parents: 53619
diff changeset
726 ;; because of CR-LF representation:
e33121530d13 Jesper Harder <harder@ifa.au.dk>
Glenn Morris <rgm@gnu.org>
parents: 53619
diff changeset
727 (count-lines (point-min) (point-max)))))
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
728 ""))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
729 (body-part
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
730 (if (member '8bitmime supported-extensions)
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
731 ;; FIXME:
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
732 ;; Code should be added here that transforms
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
733 ;; the contents of the message buffer into
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
734 ;; something the receiving SMTP can handle.
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
735 ;; For a receiver that supports 8BITMIME, this
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
736 ;; may mean converting BINARY to BASE64, or
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
737 ;; adding Content-Transfer-Encoding and the
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
738 ;; other MIME headers. The code should also
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
739 ;; return an indication of what encoding the
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
740 ;; message buffer is now, i.e. ASCII or
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
741 ;; 8BITMIME.
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
742 (if nil
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
743 " BODY=8BITMIME"
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
744 "")
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
745 "")))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
746 ; (smtpmail-send-command process (format "MAIL FROM:%s@%s" (user-login-name) (smtpmail-fqdn)))
52642
79320037f627 (smtpmail-via-smtp): Don't insert a space
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
747 (smtpmail-send-command process (format "MAIL FROM:<%s>%s%s"
52347
f38d6d97ed00 Fix previous change:
Glenn Morris <rgm@gnu.org>
parents: 52321
diff changeset
748 envelope-from
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
749 size-part
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
750 body-part))
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48846
diff changeset
751
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
752 (if (or (null (car (setq response-code (smtpmail-read-response process))))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
753 (not (integerp (car response-code)))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
754 (>= (car response-code) 400))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
755 (throw 'done nil)
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
756 ))
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
757
52642
79320037f627 (smtpmail-via-smtp): Don't insert a space
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
758 ;; RCPT TO:<recipient>
15346
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
759 (let ((n 0))
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
760 (while (not (null (nth n recipient)))
52642
79320037f627 (smtpmail-via-smtp): Don't insert a space
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
761 (smtpmail-send-command process (format "RCPT TO:<%s>" (smtpmail-maybe-append-domain (nth n recipient))))
15346
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
762 (setq n (1+ n))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
763
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
764 (setq response-code (smtpmail-read-response process))
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
765 (if (or (null (car response-code))
15346
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
766 (not (integerp (car response-code)))
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
767 (>= (car response-code) 400))
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
768 (throw 'done nil)
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
769 )
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
770 ))
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
771
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
772 ;; DATA
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
773 (smtpmail-send-command process "DATA")
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
774
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
775 (if (or (null (car (setq response-code (smtpmail-read-response process))))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
776 (not (integerp (car response-code)))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
777 (>= (car response-code) 400))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
778 (throw 'done nil)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
779 )
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
780
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
781 ;; Mail contents
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
782 (smtpmail-send-data process smtpmail-text-buffer)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
783
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
784 ;;DATA end "."
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
785 (smtpmail-send-command process ".")
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
786
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
787 (if (or (null (car (setq response-code (smtpmail-read-response process))))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
788 (not (integerp (car response-code)))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
789 (>= (car response-code) 400))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
790 (throw 'done nil)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
791 )
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
792
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
793 ;;QUIT
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
794 ; (smtpmail-send-command process "QUIT")
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
795 ; (and (null (car (smtpmail-read-response process)))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
796 ; (throw 'done nil))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
797 t ))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
798 (if process
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
799 (with-current-buffer (process-buffer process)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
800 (smtpmail-send-command process "QUIT")
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
801 (smtpmail-read-response process)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
802
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
803 ; (if (or (null (car (setq response-code (smtpmail-read-response process))))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
804 ; (not (integerp (car response-code)))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
805 ; (>= (car response-code) 400))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
806 ; (throw 'done nil)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
807 ; )
47117
c6c0e4cc9d0a (smtpmail-via-smtp): Delete process buffer
Simon Josefsson <jas@extundo.com>
parents: 45252
diff changeset
808 (delete-process process)
c6c0e4cc9d0a (smtpmail-via-smtp): Delete process buffer
Simon Josefsson <jas@extundo.com>
parents: 45252
diff changeset
809 (unless smtpmail-debug-info
c6c0e4cc9d0a (smtpmail-via-smtp): Delete process buffer
Simon Josefsson <jas@extundo.com>
parents: 45252
diff changeset
810 (kill-buffer process-buffer)))))))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
811
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
812
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
813 (defun smtpmail-process-filter (process output)
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
814 (with-current-buffer (process-buffer process)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
815 (goto-char (point-max))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
816 (insert output)))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
817
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
818 (defun smtpmail-read-response (process)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
819 (let ((case-fold-search nil)
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
820 (response-strings nil)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
821 (response-continue t)
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
822 (return-value '(nil ()))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
823 match-end)
54350
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
824 (catch 'done
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
825 (while response-continue
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
826 (goto-char smtpmail-read-point)
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
827 (while (not (search-forward "\r\n" nil t))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
828 (unless (memq (process-status process) '(open run))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
829 (throw 'done nil))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
830 (accept-process-output process)
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
831 (goto-char smtpmail-read-point))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
832
54350
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
833 (setq match-end (point))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
834 (setq response-strings
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
835 (cons (buffer-substring smtpmail-read-point (- match-end 2))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
836 response-strings))
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
837
54350
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
838 (goto-char smtpmail-read-point)
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
839 (if (looking-at "[0-9]+ ")
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
840 (let ((begin (match-beginning 0))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
841 (end (match-end 0)))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
842 (if smtpmail-debug-info
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
843 (message "%s" (car response-strings)))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
844
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
845 (setq smtpmail-read-point match-end)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
846
54350
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
847 ;; ignore lines that start with "0"
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
848 (if (looking-at "0[0-9]+ ")
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
849 nil
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
850 (setq response-continue nil)
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
851 (setq return-value
62402
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 59996
diff changeset
852 (cons (string-to-number
54350
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
853 (buffer-substring begin end))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
854 (nreverse response-strings)))))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
855
54350
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
856 (if (looking-at "[0-9]+-")
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
857 (progn (if smtpmail-debug-info
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
858 (message "%s" (car response-strings)))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
859 (setq smtpmail-read-point match-end)
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
860 (setq response-continue t))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
861 (progn
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
862 (setq smtpmail-read-point match-end)
18092
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
863 (setq response-continue nil)
8428d56cd207 (smtpmail-via-smtp): Recognize XVRB as a synonym for
Richard M. Stallman <rms@gnu.org>
parents: 17517
diff changeset
864 (setq return-value
54350
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
865 (cons nil (nreverse response-strings)))))))
e7ea873f6f2e (smtpmail-read-response): Abort if process has
Simon Josefsson <jas@extundo.com>
parents: 53919
diff changeset
866 (setq smtpmail-read-point match-end))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
867 return-value))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
868
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
869
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
870 (defun smtpmail-send-command (process command)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
871 (goto-char (point-max))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
872 (if (= (aref command 0) ?P)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
873 (insert "PASS <omitted>\r\n")
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
874 (insert command "\r\n"))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
875 (setq smtpmail-read-point (point))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
876 (process-send-string process command)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
877 (process-send-string process "\r\n"))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
878
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
879 (defun smtpmail-send-data-1 (process data)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
880 (goto-char (point-max))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
881
24773
424bc3b2a6ef (smtpmail-send-it): Bind
Kenichi Handa <handa@m17n.org>
parents: 24663
diff changeset
882 (if (and (multibyte-string-p data)
424bc3b2a6ef (smtpmail-send-it): Bind
Kenichi Handa <handa@m17n.org>
parents: 24663
diff changeset
883 smtpmail-code-conv-from)
424bc3b2a6ef (smtpmail-send-it): Bind
Kenichi Handa <handa@m17n.org>
parents: 24663
diff changeset
884 (setq data (string-as-multibyte
424bc3b2a6ef (smtpmail-send-it): Bind
Kenichi Handa <handa@m17n.org>
parents: 24663
diff changeset
885 (encode-coding-string data smtpmail-code-conv-from))))
44883
7d867b33aa2d (smtpmail-try-auth-methods): host is not in the authinfo/netrc => cred=nil.
Sam Steingold <sds@gnu.org>
parents: 44868
diff changeset
886
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
887 (if smtpmail-debug-info
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
888 (insert data "\r\n"))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
889
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
890 (setq smtpmail-read-point (point))
15676
46d74bda4351 (smtpmail-send-data-1): Escape "." at the start of
Karl Heuer <kwzh@gnu.org>
parents: 15648
diff changeset
891 ;; Escape "." at start of a line
46d74bda4351 (smtpmail-send-data-1): Escape "." at the start of
Karl Heuer <kwzh@gnu.org>
parents: 15648
diff changeset
892 (if (eq (string-to-char data) ?.)
46d74bda4351 (smtpmail-send-data-1): Escape "." at the start of
Karl Heuer <kwzh@gnu.org>
parents: 15648
diff changeset
893 (process-send-string process "."))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
894 (process-send-string process data)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
895 (process-send-string process "\r\n")
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
896 )
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
897
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
898 (defun smtpmail-send-data (process buffer)
53619
f69d407a9996 Jesper Harder <harder@ifa.au.dk>
Glenn Morris <rgm@gnu.org>
parents: 52642
diff changeset
899 (let ((data-continue t) sending-data)
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
900 (with-current-buffer buffer
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
901 (goto-char (point-min)))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
902 (while data-continue
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
903 (with-current-buffer buffer
53619
f69d407a9996 Jesper Harder <harder@ifa.au.dk>
Glenn Morris <rgm@gnu.org>
parents: 52642
diff changeset
904 (setq sending-data (buffer-substring (point-at-bol) (point-at-eol)))
f69d407a9996 Jesper Harder <harder@ifa.au.dk>
Glenn Morris <rgm@gnu.org>
parents: 52642
diff changeset
905 (end-of-line 2)
f69d407a9996 Jesper Harder <harder@ifa.au.dk>
Glenn Morris <rgm@gnu.org>
parents: 52642
diff changeset
906 (setq data-continue (not (eobp))))
f69d407a9996 Jesper Harder <harder@ifa.au.dk>
Glenn Morris <rgm@gnu.org>
parents: 52642
diff changeset
907 (smtpmail-send-data-1 process sending-data))))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
908
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
909 (defun smtpmail-deduce-address-list (smtpmail-text-buffer header-start header-end)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
910 "Get address list suitable for smtp RCPT TO: <address>."
24663
39edc9c7b235 (smtpmail-deduce-address-list): Bind variables
Andrew Innes <andrewi@gnu.org>
parents: 24455
diff changeset
911 (unwind-protect
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
912 (with-current-buffer smtpmail-address-buffer
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
913 (erase-buffer)
24663
39edc9c7b235 (smtpmail-deduce-address-list): Bind variables
Andrew Innes <andrewi@gnu.org>
parents: 24455
diff changeset
914 (let
39edc9c7b235 (smtpmail-deduce-address-list): Bind variables
Andrew Innes <andrewi@gnu.org>
parents: 24455
diff changeset
915 ((case-fold-search t)
39edc9c7b235 (smtpmail-deduce-address-list): Bind variables
Andrew Innes <andrewi@gnu.org>
parents: 24455
diff changeset
916 (simple-address-list "")
39edc9c7b235 (smtpmail-deduce-address-list): Bind variables
Andrew Innes <andrewi@gnu.org>
parents: 24455
diff changeset
917 this-line
39edc9c7b235 (smtpmail-deduce-address-list): Bind variables
Andrew Innes <andrewi@gnu.org>
parents: 24455
diff changeset
918 this-line-end
39edc9c7b235 (smtpmail-deduce-address-list): Bind variables
Andrew Innes <andrewi@gnu.org>
parents: 24455
diff changeset
919 addr-regexp)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
920 (insert-buffer-substring smtpmail-text-buffer header-start header-end)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
921 (goto-char (point-min))
15648
2feeabc94834 (smtpmail-deduce-address-list): Handle RESENT-* fields.
Karl Heuer <kwzh@gnu.org>
parents: 15595
diff changeset
922 ;; RESENT-* fields should stop processing of regular fields.
2feeabc94834 (smtpmail-deduce-address-list): Handle RESENT-* fields.
Karl Heuer <kwzh@gnu.org>
parents: 15595
diff changeset
923 (save-excursion
41716
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
924 (setq addr-regexp
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
925 (if (re-search-forward "^Resent-\\(to\\|cc\\|bcc\\):"
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
926 header-end t)
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
927 "^Resent-\\(to\\|cc\\|bcc\\):"
e467d0e8f243 Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41497
diff changeset
928 "^\\(To:\\|Cc:\\|Bcc:\\)")))
15648
2feeabc94834 (smtpmail-deduce-address-list): Handle RESENT-* fields.
Karl Heuer <kwzh@gnu.org>
parents: 15595
diff changeset
929
2feeabc94834 (smtpmail-deduce-address-list): Handle RESENT-* fields.
Karl Heuer <kwzh@gnu.org>
parents: 15595
diff changeset
930 (while (re-search-forward addr-regexp header-end t)
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
931 (replace-match "")
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
932 (setq this-line (match-beginning 0))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
933 (forward-line 1)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
934 ;; get any continuation lines
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
935 (while (and (looking-at "^[ \t]+") (< (point) header-end))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
936 (forward-line 1))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
937 (setq this-line-end (point-marker))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
938 (setq simple-address-list
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
939 (concat simple-address-list " "
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
940 (mail-strip-quoted-names (buffer-substring this-line this-line-end))))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
941 )
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
942 (erase-buffer)
41497
608d7b92d289 Simplify previous change.
Richard M. Stallman <rms@gnu.org>
parents: 41492
diff changeset
943 (insert " " simple-address-list "\n")
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
944 (subst-char-in-region (point-min) (point-max) 10 ? t);; newline --> blank
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
945 (subst-char-in-region (point-min) (point-max) ?, ? t);; comma --> blank
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
946 (subst-char-in-region (point-min) (point-max) 9 ? t);; tab --> blank
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
947
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
948 (goto-char (point-min))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
949 ;; tidyness in case hook is not robust when it looks at this
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
950 (while (re-search-forward "[ \t]+" header-end t) (replace-match " "))
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
951
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
952 (goto-char (point-min))
15346
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
953 (let (recipient-address-list)
15451
89c1e7fe879a (smtpmail-smtp-service): Use port 25 as default.
Richard M. Stallman <rms@gnu.org>
parents: 15372
diff changeset
954 (while (re-search-forward " \\([^ ]+\\) " (point-max) t)
15346
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
955 (backward-char 1)
15451
89c1e7fe879a (smtpmail-smtp-service): Use port 25 as default.
Richard M. Stallman <rms@gnu.org>
parents: 15372
diff changeset
956 (setq recipient-address-list (cons (buffer-substring (match-beginning 1) (match-end 1))
89c1e7fe879a (smtpmail-smtp-service): Use port 25 as default.
Richard M. Stallman <rms@gnu.org>
parents: 15372
diff changeset
957 recipient-address-list))
15346
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
958 )
4cd6ff2384dc (smtpmail-send-it): Fix error messages.
Richard M. Stallman <rms@gnu.org>
parents: 15345
diff changeset
959 (setq smtpmail-recipient-address-list recipient-address-list))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
960
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
961 )
24663
39edc9c7b235 (smtpmail-deduce-address-list): Bind variables
Andrew Innes <andrewi@gnu.org>
parents: 24455
diff changeset
962 )
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
963 )
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
964 )
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
965
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
966
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
967 (defun smtpmail-do-bcc (header-end)
21683
dfb671ba22f8 (smtpmail-send-it): Deleted all code related to Resent-To: processing.
Richard M. Stallman <rms@gnu.org>
parents: 20058
diff changeset
968 "Delete [Resent-]BCC: and their continuation lines from the header area.
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
969 There may be multiple BCC: lines, and each may have arbitrarily
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
970 many continuation lines."
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
971 (let ((case-fold-search t))
24455
013e22e5d30c (smtpmail-do-bcc): Fix regexp.
Karl Heuer <kwzh@gnu.org>
parents: 23444
diff changeset
972 (save-excursion
013e22e5d30c (smtpmail-do-bcc): Fix regexp.
Karl Heuer <kwzh@gnu.org>
parents: 23444
diff changeset
973 (goto-char (point-min))
013e22e5d30c (smtpmail-do-bcc): Fix regexp.
Karl Heuer <kwzh@gnu.org>
parents: 23444
diff changeset
974 ;; iterate over all BCC: lines
013e22e5d30c (smtpmail-do-bcc): Fix regexp.
Karl Heuer <kwzh@gnu.org>
parents: 23444
diff changeset
975 (while (re-search-forward "^\\(RESENT-\\)?BCC:" header-end t)
013e22e5d30c (smtpmail-do-bcc): Fix regexp.
Karl Heuer <kwzh@gnu.org>
parents: 23444
diff changeset
976 (delete-region (match-beginning 0)
013e22e5d30c (smtpmail-do-bcc): Fix regexp.
Karl Heuer <kwzh@gnu.org>
parents: 23444
diff changeset
977 (progn (forward-line 1) (point)))
013e22e5d30c (smtpmail-do-bcc): Fix regexp.
Karl Heuer <kwzh@gnu.org>
parents: 23444
diff changeset
978 ;; get rid of any continuation lines
013e22e5d30c (smtpmail-do-bcc): Fix regexp.
Karl Heuer <kwzh@gnu.org>
parents: 23444
diff changeset
979 (while (and (looking-at "^[ \t].*\n") (< (point) header-end))
013e22e5d30c (smtpmail-do-bcc): Fix regexp.
Karl Heuer <kwzh@gnu.org>
parents: 23444
diff changeset
980 (replace-match ""))))))
15345
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
981
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
982
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
983 (provide 'smtpmail)
4eef6c1687f8 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
984
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52347
diff changeset
985 ;;; arch-tag: a76992df-6d71-43b7-9e72-4bacc6c05466
17517
8f952e921136 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 17436
diff changeset
986 ;;; smtpmail.el ends here