unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* smtpmail with authentication problem
@ 2004-07-01  8:49 FCC
  2004-07-06 13:31 ` martin
  0 siblings, 1 reply; 5+ messages in thread
From: FCC @ 2004-07-01  8:49 UTC (permalink / raw)


Hello all,

I am posting this to gnu.emacs.help because I could not get an answer to 
it at gnu.emacs.gnus.

I can read news and check my e-mail using gnus. I have been trying to 
send e-mail using

GNU Emacs 21.3.1 (i386-msvc-nt5.1.2600) of 2003-03-28 on buffy

I have also tried to use the smtpmail.el and sendmail.el of latest CVS 
emacs, because I have found posts claiming that those files shipped with 
Emacs 21.3 do not have authentication support. In my server, I 
definitely need authentication (for example in Mozilla I must use 
authentication or I cannot send any mail).

But I have no success.

Here is what I have in my _emacs:

(setq user-full-name "myname")
(setq user-mail-address "mylogin@mydomain")
(setq message-send-mail-function 'smtpmail-send-it)
(setq send-mail-function 'smtpmail-send-it)
(setq smtpmail-default-smtp-server "mysmtpserver")
(setq smtpmail-local-domain nil)
(setq smtpmail-debug-info t)
(setq smtpmail-auth-login-username "myname")
(setq smtpmail-auth-credentials '(("mysmtpserver" 25 "mylogin" nil)))
(load-library "smtpmail")


Here is what I am getting:

--------------*Messages*--------------------------------------------
Checking new news...done
Loading gnus-msg...done
Loading mailabbrev...done
Fontifying *mail*... (regexps...........)
Loading mailabbrev...done
Sending...
Loading mail-extr...done
220 mysmtpserver ESMTP Service (Lotus Domino Release 5.0.12) ready at 
Tue, 29 Jun 2004 17:01:55 +0200
250-mysmtpserver Hello xxxx ([14x.8x.5x.1x]), pleased to meet you
250-TLS
250-HELP
250-AUTH=LOGIN
250-STARTTLS
250-DSN
250-SIZE 10240000
250-8BITMIME
250 PIPELINING
Loading cl-macs...done
SMTP password for mysmtpserver:25:
SMTP password for mysmtpserver:25: .
SMTP password for mysmtpserver:25: ..
SMTP password for mysmtpserver:25: ........
221 mysmtpserver SMTP Service closing transmission channel
cond: Mechanism nil not implemented
--------------
--------------*trace of SMTP session to mysmtpserver*------------
220 mysmtpserver ESMTP Service (Lotus Domino Release 5.0.12) ready at 
Tue, 29 Jun 2004 17:01:55 +0200

EHLO xxxx

250-mysmtpserver Hello xxxxx ([14x.8x.5x.1x]), pleased to meet you

250-TLS

250-HELP

250-AUTH=LOGIN

250-STARTTLS

250-DSN

250-SIZE 10240000

250-8BITMIME

250 PIPELINING

QUIT

221 mysmtpserver SMTP Service closing transmission channel
-----------

Any ideas what's going on? Is it that may be smtpmail with 
authentication has not been completely developed yet? Thanks for your 
help in advance.

FCC

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

* Re: smtpmail with authentication problem
  2004-07-01  8:49 smtpmail with authentication problem FCC
@ 2004-07-06 13:31 ` martin
  2004-07-07  8:19   ` FCC
  0 siblings, 1 reply; 5+ messages in thread
From: martin @ 2004-07-06 13:31 UTC (permalink / raw)



"F" == FCC  <fcc509@netscape.net> writes:
 F> Date: Thu, 01 Jul 2004 10:49:16 +0200

8<--------------------------------------------------------------------

 F> Any ideas what's going on? Is it that may be smtpmail with
 F> authentication has not been completely developed yet? Thanks for your
 F> help in advance.

hi,

smtpmail with authentication works for me at home using the .authinfo
file. I'll post possible further details from there.

martin

-- 
martin dot fischer at boschrexroth dot de

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

* Re: smtpmail with authentication problem
  2004-07-06 13:31 ` martin
@ 2004-07-07  8:19   ` FCC
  2004-07-07 11:24     ` martin
  0 siblings, 1 reply; 5+ messages in thread
From: FCC @ 2004-07-07  8:19 UTC (permalink / raw)


martin@rochooni.net said the following on 7/6/2004 3:31 PM:
> smtpmail with authentication works for me at home using the .authinfo
> file. I'll post possible further details from there.

That would be very nice. Thanks.

FCC

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

* Re: smtpmail with authentication problem
  2004-07-07  8:19   ` FCC
@ 2004-07-07 11:24     ` martin
  2004-07-07 13:02       ` FCC
  0 siblings, 1 reply; 5+ messages in thread
From: martin @ 2004-07-07 11:24 UTC (permalink / raw)



"F" == FCC  <fcc509@netscape.net> writes:
 F> Date: Wed, 07 Jul 2004 10:19:33 +0200
 F> 
 F> martin@rochooni.net said the following on 7/6/2004 3:31 PM:
 >> smtpmail with authentication works for me at home using the .authinfo
 >> file. I'll post possible further details from there.

hi,

i just set the variables smtpmail-default-smtp-server and
smtpmail-smtp-server to the name of my smtp server and created the
file .authinfo in my home directory containing a line like this:

"machine <smptp-server-name> login <user-name> password <password> force yes"

i'm using smtpmail.el which comes with
"GNU Emacs 21.3.1 (i386-msvc-nt5.0.2195) of 2003-03-28 on buffy"

martin

 F> 
 F> That would be very nice. Thanks.
 F> 
 F> FCC
 F> 
-- 
martin dot fischer at boschrexroth dot de

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

* Re: smtpmail with authentication problem
  2004-07-07 11:24     ` martin
@ 2004-07-07 13:02       ` FCC
  0 siblings, 0 replies; 5+ messages in thread
From: FCC @ 2004-07-07 13:02 UTC (permalink / raw)


martin@rochooni.net said the following on 7/7/2004 1:24 PM:
> i just set the variables smtpmail-default-smtp-server and
> smtpmail-smtp-server to the name of my smtp server and created the
> file .authinfo in my home directory containing a line like this:
> 
> "machine <smptp-server-name> login <user-name> password <password> force yes"
> 
> i'm using smtpmail.el which comes with
> "GNU Emacs 21.3.1 (i386-msvc-nt5.0.2195) of 2003-03-28 on buffy"

Can you please post also relevant section of your .emacs or _emacs file? 
I am still not succeeding, wondering if I am missing something in my _emacs.

Thanks,

FCC.

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

end of thread, other threads:[~2004-07-07 13:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-01  8:49 smtpmail with authentication problem FCC
2004-07-06 13:31 ` martin
2004-07-07  8:19   ` FCC
2004-07-07 11:24     ` martin
2004-07-07 13:02       ` FCC

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).