all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* help  with  msmtp  !
@ 2012-11-20  3:39 horse_rivers
  2012-11-20  7:14 ` Daimrod
  0 siblings, 1 reply; 4+ messages in thread
From: horse_rivers @ 2012-11-20  3:39 UTC (permalink / raw)
  To: emacs help list

hi,  
  when I send mail with msmtp,it take this error message to me :

 msmtp: envelope from address xxx  not accepted by the server

msmtp: server message: 553 authentication is required,smtp7,DsmowECZ_U6a66pQw8i2Ag--.525S2 1353378714

msmtp: could not send mail (account default from /usr/local/msmtp/etc/msmtprc)

the msmtp config file is right seted,host address and account is seted correctly!


is there some advise?



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

* Re: help  with  msmtp  !
  2012-11-20  3:39 help with msmtp ! horse_rivers
@ 2012-11-20  7:14 ` Daimrod
  2012-11-20  9:14   ` horse_rivers
  0 siblings, 1 reply; 4+ messages in thread
From: Daimrod @ 2012-11-20  7:14 UTC (permalink / raw)
  To: help-gnu-emacs

[-- Attachment #1: Type: text/plain, Size: 960 bytes --]

horse_rivers <horse_rivers@126.com> writes:

> hi,  
>   when I send mail with msmtp,it take this error message to me :
>
>  msmtp: envelope from address xxx  not accepted by the server
>
> msmtp: server message: 553 authentication is required,smtp7,DsmowECZ_U6a66pQw8i2Ag--.525S2 1353378714

It looks like you didn't set the user and password for your account.

> msmtp: could not send mail (account default from /usr/local/msmtp/etc/msmtprc)
>
> the msmtp config file is right seted,host address and account is seted correctly!
>
>
> is there some advise?

I have this in ~/.gnus.el:

(setf sendmail-program "msmtp"
      mail-envelope-from 'header
      message-sendmail-envelope-from 'header
      message-sendmail-f-is-evil nil
      mail-specify-envelope-from t)

And then, each entry in ~/.msmtprc is like:

account NAME
host some.smtp.host
port PORT
user USER
From from@address
password XXXX

-- 
Daimrod/Greg

[-- Attachment #2: Type: application/pgp-signature, Size: 835 bytes --]

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

* Re:Re: help  with  msmtp  !
  2012-11-20  7:14 ` Daimrod
@ 2012-11-20  9:14   ` horse_rivers
  2012-11-20 15:46     ` Daimrod
  0 siblings, 1 reply; 4+ messages in thread
From: horse_rivers @ 2012-11-20  9:14 UTC (permalink / raw)
  To: help-gnu-emacs


thanks!

these options have fixed order which can not be changed ?

At 2012-11-20 15:14:50,Daimrod <daimrod@gmail.com> wrote:
>horse_rivers <horse_rivers@126.com> writes:
>
>> hi,  
>>   when I send mail with msmtp,it take this error message to me :
>>
>>  msmtp: envelope from address xxx  not accepted by the server
>>
>> msmtp: server message: 553 authentication is required,smtp7,DsmowECZ_U6a66pQw8i2Ag--.525S2 1353378714
>
>It looks like you didn't set the user and password for your account.
>
>> msmtp: could not send mail (account default from /usr/local/msmtp/etc/msmtprc)
>>
>> the msmtp config file is right seted,host address and account is seted correctly!
>>
>>
>> is there some advise?
>
>I have this in ~/.gnus.el:
>
>(setf sendmail-program "msmtp"
>      mail-envelope-from 'header
>      message-sendmail-envelope-from 'header
>      message-sendmail-f-is-evil nil
>      mail-specify-envelope-from t)
>
>And then, each entry in ~/.msmtprc is like:
>
>account NAME
>host some.smtp.host
>port PORT
>user USER
>From from@address
>password XXXX
>
>-- 
>Daimrod/Greg



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

* Re: help  with  msmtp  !
  2012-11-20  9:14   ` horse_rivers
@ 2012-11-20 15:46     ` Daimrod
  0 siblings, 0 replies; 4+ messages in thread
From: Daimrod @ 2012-11-20 15:46 UTC (permalink / raw)
  To: help-gnu-emacs

[-- Attachment #1: Type: text/plain, Size: 1405 bytes --]

horse_rivers  <horse_rivers@126.com> writes:

> thanks!
>
> these options have fixed order which can not be changed ?

No, the order doesn't matter.

> At 2012-11-20 15:14:50,Daimrod <daimrod@gmail.com> wrote:
>>horse_rivers <horse_rivers@126.com> writes:
>>
>>> hi,  
>>>   when I send mail with msmtp,it take this error message to me :
>>>
>>>  msmtp: envelope from address xxx  not accepted by the server
>>>
>>> msmtp: server message: 553 authentication is required,smtp7,DsmowECZ_U6a66pQw8i2Ag--.525S2 1353378714
>>
>>It looks like you didn't set the user and password for your account.
>>
>>> msmtp: could not send mail (account default from /usr/local/msmtp/etc/msmtprc)
>>>
>>> the msmtp config file is right seted,host address and account is seted correctly!
>>>
>>>
>>> is there some advise?
>>
>>I have this in ~/.gnus.el:
>>
>>(setf sendmail-program "msmtp"
>>      mail-envelope-from 'header
>>      message-sendmail-envelope-from 'header
>>      message-sendmail-f-is-evil nil
>>      mail-specify-envelope-from t)
>>
>>And then, each entry in ~/.msmtprc is like:
>>
>>account NAME
>>host some.smtp.host
>>port PORT
>>user USER
>>From from@address
>>password XXXX
>>
>>-- 
>>Daimrod/Greg
>
>

-- 
Daimrod/Greg

[-- Attachment #2: Type: application/pgp-signature, Size: 835 bytes --]

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

end of thread, other threads:[~2012-11-20 15:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-20  3:39 help with msmtp ! horse_rivers
2012-11-20  7:14 ` Daimrod
2012-11-20  9:14   ` horse_rivers
2012-11-20 15:46     ` Daimrod

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.