all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* smtpmail and smtp-auth
@ 2003-07-26 11:31 Mario Domgörgen
  2003-07-26 14:44 ` It's me FKtPp ;)
  2003-07-27 11:54 ` Subhankar Chatterjee
  0 siblings, 2 replies; 7+ messages in thread
From: Mario Domgörgen @ 2003-07-26 11:31 UTC (permalink / raw)


Hej list!

Working for an hour or so, i still can't use smtpmail to send my mails
out in the world...

,---- trace of SMTP-session to mail.gmx.de
| 220 {mp005} GMX Mailservices ESMTP
| EHLO 5100784654140001.dialin.t-online.de
| 250-{mp005} GMX Mailservices
| 250-8BITMIME
| 250-AUTH=LOGIN CRAM-MD5 PLAIN
| 250-AUTH CRAM-MD5 LOGIN PLAIN
| 250 STARTTLS
| MAIL FROM: <kanaldrache@gmx.de>
| 451 {mp005} Need to authenticate via SMTP-AUTH-Login
| QUIT
| 221 {mp005} GMX Mailservices
`----

And here are my settings:

(setq smtpmail-auth-credentials '("mail.gmx.de" 25 "user-number" "password")
      smtpmail-debug-info t
      smtpmail-debug-verb t
      smtpmail-default-smtp-server nil
      smtpmail-smtp-server "mail.gmx.de"
      smtpmail-smtp-service "25")

GNU Emacs 21.3.50.1 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
 of 2003-07-25 on debian

Any ideas?

Mario

-- 
Stay the patient course
Of little worth is your ire
The network is down

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

* Re: smtpmail and smtp-auth
  2003-07-26 11:31 smtpmail and smtp-auth Mario Domgörgen
@ 2003-07-26 14:44 ` It's me FKtPp ;)
  2003-07-26 20:32   ` Mario Domgörgen
  2003-07-27 11:54 ` Subhankar Chatterjee
  1 sibling, 1 reply; 7+ messages in thread
From: It's me FKtPp ;) @ 2003-07-26 14:44 UTC (permalink / raw)


Mario Domgörgen <kanaldrache@gmx.de> writes:


[...]

> | 250-AUTH=LOGIN CRAM-MD5 PLAIN
> | 250-AUTH CRAM-MD5 LOGIN PLAIN

It use MD5 AUTH ... Is ur Smtpmail.el support this AUTH method ?
-- 
You had some happiness once, but your parents moved away, and you had to
leave it behind.

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

* Re: smtpmail and smtp-auth
  2003-07-26 14:44 ` It's me FKtPp ;)
@ 2003-07-26 20:32   ` Mario Domgörgen
  2003-07-27  2:21     ` It's me FKtPp ;)
  0 siblings, 1 reply; 7+ messages in thread
From: Mario Domgörgen @ 2003-07-26 20:32 UTC (permalink / raw)


"It's me FKtPp ;)" <m_pupil@yahoo.com.cn> writes:

>> | 250-AUTH=LOGIN CRAM-MD5 PLAIN
>> | 250-AUTH CRAM-MD5 LOGIN PLAIN
> It use MD5 AUTH ... Is ur Smtpmail.el support this AUTH method ?

Seems so:

,----smtpmail.el
| (defconst smtpmail-auth-supported '(cram-md5 login)
|  "List of supported SMTP AUTH mechanisms.")
`----

But i don't know if i have to change something to use that smtp-auth
mechanism...

Mario

-- 
Three things are certain:
Death, taxes, and lost data.
Guess which has occurred.

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

* Re: smtpmail and smtp-auth
  2003-07-26 20:32   ` Mario Domgörgen
@ 2003-07-27  2:21     ` It's me FKtPp ;)
  2003-07-27 10:59       ` Mario Domgörgen
  0 siblings, 1 reply; 7+ messages in thread
From: It's me FKtPp ;) @ 2003-07-27  2:21 UTC (permalink / raw)


Sorry , My idea seems misleading :P 

>From this:
,---- trace of SMTP-session to mail.gmx.de
| 220 {mp005} GMX Mailservices ESMTP
| EHLO 5100784654140001.dialin.t-online.de
| 250-{mp005} GMX Mailservices
| 250-8BITMIME
| 250-AUTH=LOGIN CRAM-MD5 PLAIN
| 250-AUTH CRAM-MD5 LOGIN PLAIN

It seemed that ur server support CRAM-MD5 and LOGIN and PLAIN AUTH
methods

| 250 STARTTLS
| MAIL FROM: <kanaldrache@gmx.de>
| 451 {mp005} Need to authenticate via SMTP-AUTH-Login
| QUIT
| 221 {mp005} GMX Mailservices
`----
It seems that ur smtpmail.el did not do any AUTH ... something
mis-configured ? 

BTW,the author of smtpmail.el had written a configure-template in
comment of smtpmail.el.. 
-- 
If you stand on your head, you will get footprints in your hair.

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

* Re: smtpmail and smtp-auth
  2003-07-27  2:21     ` It's me FKtPp ;)
@ 2003-07-27 10:59       ` Mario Domgörgen
  0 siblings, 0 replies; 7+ messages in thread
From: Mario Domgörgen @ 2003-07-27 10:59 UTC (permalink / raw)


"It's me FKtPp ;)" <m_pupil@yahoo.com.cn> writes:


> It seemed that ur server support CRAM-MD5 and LOGIN and PLAIN AUTH
> methods
>
> | 250 STARTTLS
> | MAIL FROM: <kanaldrache@gmx.de>
> | 451 {mp005} Need to authenticate via SMTP-AUTH-Login
> | QUIT
> | 221 {mp005} GMX Mailservices
> `----
> It seems that ur smtpmail.el did not do any AUTH ... something
> mis-configured ? 
> BTW,the author of smtpmail.el had written a configure-template in
> comment of smtpmail.el.. 

I don't think so, as i strictly follow the manual, and as i look on the
comment all values are correct. I could also do Pop-before-smtp, but
that would be my last way out... :)

Mario

-- 
Having been erased,
The document you're seeking
Must now be retyped.

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

* Re: smtpmail and smtp-auth
  2003-07-26 11:31 smtpmail and smtp-auth Mario Domgörgen
  2003-07-26 14:44 ` It's me FKtPp ;)
@ 2003-07-27 11:54 ` Subhankar Chatterjee
  2003-07-27 12:01   ` Mario Domgörgen
  1 sibling, 1 reply; 7+ messages in thread
From: Subhankar Chatterjee @ 2003-07-27 11:54 UTC (permalink / raw)


Mario Domgörgen <kanaldrache@gmx.de> writes:

> And here are my settings:
> 
> (setq smtpmail-auth-credentials '("mail.gmx.de" 25 "user-number" "password")
>       smtpmail-debug-info t      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>       smtpmail-debug-verb t
>       smtpmail-default-smtp-server nil
>       smtpmail-smtp-server "mail.gmx.de"
>       smtpmail-smtp-service "25")
                              ^^^^  
                           (no quotes here)

Follow this format :

(load "smtpmail")
(setq message-send-mail-function 'smtpmail-send-it) ; if you use message/Gnus
(setq smtpmail-smtp-service 25)
(setq smtpmail-debug-info t) ; only to debug problems
(setq smtpmail-auth-login-username "username")
(setq smtpmail-auth-credentials
      '(("smtp.bonbon.net" 25 "username" "passwd")))

> Mario
Regards
-Subhankar


-- 
blue pill or red pill
--

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

* Re: smtpmail and smtp-auth
  2003-07-27 11:54 ` Subhankar Chatterjee
@ 2003-07-27 12:01   ` Mario Domgörgen
  0 siblings, 0 replies; 7+ messages in thread
From: Mario Domgörgen @ 2003-07-27 12:01 UTC (permalink / raw)


Subhankar Chatterjee <subhankar@bonbon.net> writes:

>> (setq smtpmail-auth-credentials '("mail.gmx.de" 25 "user-number" "password")
>>       smtpmail-debug-info t      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>>       smtpmail-debug-verb t
>>       smtpmail-default-smtp-server nil
>>       smtpmail-smtp-server "mail.gmx.de"
>>       smtpmail-smtp-service "25")
>                               ^^^^  
>                            (no quotes here)
> Follow this format :
>
> (load "smtpmail")
> (setq message-send-mail-function 'smtpmail-send-it) ; if you use message/Gnus
> (setq smtpmail-smtp-service 25)
> (setq smtpmail-debug-info t) ; only to debug problems
> (setq smtpmail-auth-login-username "username")
> (setq smtpmail-auth-credentials
>       '(("smtp.bonbon.net" 25 "username" "passwd")))

Ah, great, now it is working! Thank you!

Mario

-- 
First snow, then silence.
This thousand dollar screen dies
so beautifully.

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

end of thread, other threads:[~2003-07-27 12:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-07-26 11:31 smtpmail and smtp-auth Mario Domgörgen
2003-07-26 14:44 ` It's me FKtPp ;)
2003-07-26 20:32   ` Mario Domgörgen
2003-07-27  2:21     ` It's me FKtPp ;)
2003-07-27 10:59       ` Mario Domgörgen
2003-07-27 11:54 ` Subhankar Chatterjee
2003-07-27 12:01   ` Mario Domgörgen

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.