all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* SMTP mail
@ 2007-09-07 16:21 David Ventimiglia
  2007-09-07 22:04 ` Exal de Jesus Garcia Carrillo
  0 siblings, 1 reply; 5+ messages in thread
From: David Ventimiglia @ 2007-09-07 16:21 UTC (permalink / raw)
  To: help-gnu-emacs

Sending mail through SMTP fails for me, with the error "Sender verify
failed".  Has anyone seen this before with Emacs?  I'm trying to
figure out if I need to fix my Emacs configuration, or if the problem
lies outside of Emacs.

Here're my mail customizations:

(custom-set-variables
 '(message-send-mail-function (quote smtpmail-send-it))
 '(send-mail-function (quote smtpmail-send-it))
 '(smtpmail-auth-credentials (quote (("mail.msu.edu" 25 "ventimig" nil))))
 '(smtpmail-debug-info t)
 '(smtpmail-debug-verb t)
 '(smtpmail-smtp-server "mail.msu.edu")
 '(smtpmail-starttls-credentials (quote (("mail.msu.edu" 25 "" ""))))
 '(starttls-use-gnutls nil)
 '(user-mail-address "ventimig@msu.com"))

And here's the output from the SMTP trace buffer:

Process SMTP killed
220 sys15.mail.msu.edu ESMTP Exim 4.63 Fri, 07 Sep 2007 11:40:31 -0400
EHLO ventimig-2.user.msu.edu
250-sys15.mail.msu.edu Hello ventimig-2.user.msu.edu [35.10.222.24]
250-SIZE 52428800
250-PIPELINING
250-AUTH PLAIN LOGIN
250-STARTTLS
250 HELP
STARTTLS
220 TLS go ahead
EHLO ventimig-2.user.msu.edu
250-sys15.mail.msu.edu Hello ventimig-2.user.msu.edu [35.10.222.24]
250-SIZE 52428800
250-PIPELINING
250-AUTH PLAIN LOGIN
250 HELP
AUTH PLAIN AHZlbnRpbWlnAFRtdGN0bXRzdHMx
235 Authentication succeeded
MAIL FROM:<ventimig@msu.com> SIZE=182
250 OK
RCPT TO:<ventimig@msu.edu>
550 Sender verify failed
QUIT
q221 sys15.mail.msu.edu closing connection

Of course, sending mail with SMTP using TLS works perfectly fine from
this computer when I use Thunderbird.

Cheers,
David

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: SMTP mail
  2007-09-07 16:21 SMTP mail David Ventimiglia
@ 2007-09-07 22:04 ` Exal de Jesus Garcia Carrillo
  2007-09-10 12:14   ` David Ventimiglia
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Exal de Jesus Garcia Carrillo @ 2007-09-07 22:04 UTC (permalink / raw)
  To: help-gnu-emacs

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

David Ventimiglia em gnu.emacs.help escreveu :


> 550 Sender verify failed


ehhmm, the From header is the same as the sender?, OTOH can you
additionally try an autentication such as:

,----
| smtpmail-auth-credentials "~/emacs-stuff/mailauth"
`----

** The mailauth file has .netrc syntax


Hope this help.

- -- 
Spam protection: 
In my e-mail remplace the words `no-spam' with `exal'.

.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ <http://mailcrypt.sourceforge.net/>

iD8DBQFG4cr+oZmxoVJRtGIRApyrAJ9YYCREs6ZUz79rgiEbwI4W8SM2eACfUjwH
T1Av9P83UDf6YQhxfeDzz64=
=ZFCq
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: SMTP mail
  2007-09-07 22:04 ` Exal de Jesus Garcia Carrillo
@ 2007-09-10 12:14   ` David Ventimiglia
  2007-09-10 12:46   ` David Ventimiglia
  2007-09-10 12:46   ` David Ventimiglia
  2 siblings, 0 replies; 5+ messages in thread
From: David Ventimiglia @ 2007-09-10 12:14 UTC (permalink / raw)
  To: help-gnu-emacs

> David Ventimiglia em gnu.emacs.help escreveu :
>
>
>> 550 Sender verify failed
>
>
> ehhmm, the From header is the same as the sender?, OTOH can you
> additionally try an autentication such as:
>
> ,----
> | smtpmail-auth-credentials "~/emacs-stuff/mailauth"
> `----
>
> ** The mailauth file has .netrc syntax
>
>
> Hope this help.
>
> -- 
> Spam protection: 
> In my e-mail remplace the words `no-spam' with `exal'.
>
> .

Exal de Jesus Garcia Carrillo <no-spam@gnu.org> writes:

Hi.  Thanks for the response.  The "From:" header is "David
Ventimiglia <ventimig@msu.com>", but I don't know what that would be
compared against to verify.  My email address on the IMAP server is
ventimig@msu.edu, but what does the SMTP server compare it against?

Also, smtpmail-auth-credentials has its default value, "~/.authinfo",
and in that file I have:

machine mail.msu.edu login <my user id> force yes

Anyway, in the SMTP trace window are these lines

AUTH PLAIN AHZlbnRpbWlnAFRtdGN0bXRzdHMx
235 Authentication succeeded
MAIL FROM:<ventimig@msu.com> SIZE=182
250 OK

It seems like authentication to the SMTP server works.  

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: SMTP mail
  2007-09-07 22:04 ` Exal de Jesus Garcia Carrillo
  2007-09-10 12:14   ` David Ventimiglia
@ 2007-09-10 12:46   ` David Ventimiglia
  2007-09-10 12:46   ` David Ventimiglia
  2 siblings, 0 replies; 5+ messages in thread
From: David Ventimiglia @ 2007-09-10 12:46 UTC (permalink / raw)
  To: help-gnu-emacs

> David Ventimiglia em gnu.emacs.help escreveu :
>
>
>> 550 Sender verify failed
>
>
> ehhmm, the From header is the same as the sender?, OTOH can you
> additionally try an autentication such as:
>
> ,----
> | smtpmail-auth-credentials "~/emacs-stuff/mailauth"
> `----
>
> ** The mailauth file has .netrc syntax
>
>
> Hope this help.
>
> -- 
> Spam protection: 
> In my e-mail remplace the words `no-spam' with `exal'.
>
> .

Exal de Jesus Garcia Carrillo <no-spam@gnu.org> writes:

Hi.  Thanks for the response.  The "From:" header is "David
Ventimiglia <ventimig@msu.com>", but I don't know what that would be
compared against to verify.  My email address on the IMAP server is
ventimig@msu.edu, but what does the SMTP server compare it against?

Also, smtpmail-auth-credentials has its default value, "~/.authinfo",
and in that file I have:

machine mail.msu.edu login <my user id> force yes

Anyway, in the SMTP trace window are these lines

AUTH PLAIN AHZlbnRpbWlnAFRtdGN0bXRzdHMx
235 Authentication succeeded
MAIL FROM:<ventimig@msu.com> SIZE=182
250 OK

It seems like authentication to the SMTP server works.  

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: SMTP mail
  2007-09-07 22:04 ` Exal de Jesus Garcia Carrillo
  2007-09-10 12:14   ` David Ventimiglia
  2007-09-10 12:46   ` David Ventimiglia
@ 2007-09-10 12:46   ` David Ventimiglia
  2 siblings, 0 replies; 5+ messages in thread
From: David Ventimiglia @ 2007-09-10 12:46 UTC (permalink / raw)
  To: help-gnu-emacs

> David Ventimiglia em gnu.emacs.help escreveu :
>
>
>> 550 Sender verify failed
>
>
> ehhmm, the From header is the same as the sender?, OTOH can you
> additionally try an autentication such as:
>
> ,----
> | smtpmail-auth-credentials "~/emacs-stuff/mailauth"
> `----
>
> ** The mailauth file has .netrc syntax
>
>
> Hope this help.
>
> -- 
> Spam protection: 
> In my e-mail remplace the words `no-spam' with `exal'.
>
> .

Exal de Jesus Garcia Carrillo <no-spam@gnu.org> writes:

Hi.  Thanks for the response.  The "From:" header is "David
Ventimiglia <ventimig@msu.com>", but I don't know what that would be
compared against to verify.  My email address on the IMAP server is
ventimig@msu.edu, but what does the SMTP server compare it against?

Also, smtpmail-auth-credentials has its default value, "~/.authinfo",
and in that file I have:

machine mail.msu.edu login <my user id> force yes

Anyway, in the SMTP trace window are these lines

AUTH PLAIN AHZlbnRpbWlnAFRtdGN0bXRzdHMx
235 Authentication succeeded
MAIL FROM:<ventimig@msu.com> SIZE=182
250 OK

It seems like authentication to the SMTP server works.  

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-09-10 12:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-07 16:21 SMTP mail David Ventimiglia
2007-09-07 22:04 ` Exal de Jesus Garcia Carrillo
2007-09-10 12:14   ` David Ventimiglia
2007-09-10 12:46   ` David Ventimiglia
2007-09-10 12:46   ` David Ventimiglia

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.