* I cannot send bug report in emacs
@ 2009-08-02 4:01 waterloo
2009-08-02 4:19 ` Byung-Hee HWANG
0 siblings, 1 reply; 11+ messages in thread
From: waterloo @ 2009-08-02 4:01 UTC (permalink / raw)
To: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 69 bytes --]
If I need some setting ?
I cannot send bug report in emacs.
Thanks
[-- Attachment #2: Type: text/html, Size: 83 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: I cannot send bug report in emacs
2009-08-02 4:01 I cannot send bug report in emacs waterloo
@ 2009-08-02 4:19 ` Byung-Hee HWANG
2009-08-02 5:06 ` waterloo
0 siblings, 1 reply; 11+ messages in thread
From: Byung-Hee HWANG @ 2009-08-02 4:19 UTC (permalink / raw)
To: waterloo; +Cc: help-gnu-emacs
waterloo <waterloo2005@gmail.com> writes:
> If I need some setting ?I cannot send bug report in emacs.Thanks
Because it depends on mail-mode, there is needed to setup local smtp,
afaik. It is a similar case with send-pr of FreeBSD system in act
mechanism. Easily, use msmtp or ssmtp for local smtp setup if you are
under dial-up connection. And, in your case, fire to Google's relay SMTP
server (smtp.gmail.com:587).
If you need more information about Google's relay SMTP server, see
http://mail.google.com/support/bin/answer.py?hl=en&answer=13287
Sincerely,
--
"Instruct my sons, all three of them, that they will accompany me to the
hospital to see poor Genco."
-- Vito Corleone, "Chapter 1", page 41
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: I cannot send bug report in emacs
2009-08-02 4:19 ` Byung-Hee HWANG
@ 2009-08-02 5:06 ` waterloo
2009-08-02 10:40 ` waterloo
0 siblings, 1 reply; 11+ messages in thread
From: waterloo @ 2009-08-02 5:06 UTC (permalink / raw)
To: Byung-Hee HWANG; +Cc: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 823 bytes --]
Thanks very much!
2009/8/2 Byung-Hee HWANG <bh@izb.knu.ac.kr>
> waterloo <waterloo2005@gmail.com> writes:
>
> > If I need some setting ?I cannot send bug report in emacs.Thanks
>
> Because it depends on mail-mode, there is needed to setup local smtp,
> afaik. It is a similar case with send-pr of FreeBSD system in act
> mechanism. Easily, use msmtp or ssmtp for local smtp setup if you are
> under dial-up connection. And, in your case, fire to Google's relay SMTP
> server (smtp.gmail.com:587).
>
> If you need more information about Google's relay SMTP server, see
> http://mail.google.com/support/bin/answer.py?hl=en&answer=13287
>
> Sincerely,
>
> --
> "Instruct my sons, all three of them, that they will accompany me to the
> hospital to see poor Genco."
> -- Vito Corleone, "Chapter 1", page 41
>
[-- Attachment #2: Type: text/html, Size: 1432 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: I cannot send bug report in emacs
2009-08-02 5:06 ` waterloo
@ 2009-08-02 10:40 ` waterloo
2009-08-02 12:03 ` Byung-Hee HWANG
0 siblings, 1 reply; 11+ messages in thread
From: waterloo @ 2009-08-02 10:40 UTC (permalink / raw)
To: Byung-Hee HWANG; +Cc: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 1466 bytes --]
I set below in .emacs.
;; If you use the default mail user agent.
(setq send-mail-function 'smtpmail-send-it)
;; Send mail using SMTP via mail.example.org.
(setq smtpmail-smtp-server "smtp.gmail.com")
;; Send mail using SMTP on the mail submission port 587.
(setq smtpmail-smtp-service 587)
;; Authenticate using this username and password against my server.
(setq smtpmail-auth-credentials
'(("smtp.gmail.com" 587 "xxx@gmail.com" "xxx")))
But send fail. it says: smtpmail-send-it: Sending failed; SMTP protocol
error
What else do I need to do ?
Thanks
2009/8/2 waterloo <waterloo2005@gmail.com>
> Thanks very much!
>
> 2009/8/2 Byung-Hee HWANG <bh@izb.knu.ac.kr>
>
> waterloo <waterloo2005@gmail.com> writes:
>>
>> > If I need some setting ?I cannot send bug report in emacs.Thanks
>>
>> Because it depends on mail-mode, there is needed to setup local smtp,
>> afaik. It is a similar case with send-pr of FreeBSD system in act
>> mechanism. Easily, use msmtp or ssmtp for local smtp setup if you are
>> under dial-up connection. And, in your case, fire to Google's relay SMTP
>> server (smtp.gmail.com:587).
>>
>> If you need more information about Google's relay SMTP server, see
>> http://mail.google.com/support/bin/answer.py?hl=en&answer=13287
>>
>> Sincerely,
>>
>> --
>> "Instruct my sons, all three of them, that they will accompany me to the
>> hospital to see poor Genco."
>> -- Vito Corleone, "Chapter 1", page 41
>>
>
>
[-- Attachment #2: Type: text/html, Size: 2633 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: I cannot send bug report in emacs
2009-08-02 10:40 ` waterloo
@ 2009-08-02 12:03 ` Byung-Hee HWANG
2009-08-02 12:39 ` waterloo
0 siblings, 1 reply; 11+ messages in thread
From: Byung-Hee HWANG @ 2009-08-02 12:03 UTC (permalink / raw)
To: waterloo; +Cc: help-gnu-emacs
On 8/2/09, waterloo <waterloo2005@gmail.com> wrote:
> I set below in .emacs.
> [... snip 27 lines ...]
No. There is nothing to do for it with ~/.emacs file. Do set
the things into your local smtp program(ssmtp or msmtp),
not ~/.emacs file. Then Emacs' bug-report program use it
by default internally. Do you need to see real examples for
that?
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: I cannot send bug report in emacs
2009-08-02 12:03 ` Byung-Hee HWANG
@ 2009-08-02 12:39 ` waterloo
2009-08-02 13:17 ` Byung-Hee HWANG
0 siblings, 1 reply; 11+ messages in thread
From: waterloo @ 2009-08-02 12:39 UTC (permalink / raw)
To: Byung-Hee HWANG; +Cc: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 464 bytes --]
Yes , can you give me some examples ?
2009/8/2 Byung-Hee HWANG <bh@izb.knu.ac.kr>
> On 8/2/09, waterloo <waterloo2005@gmail.com> wrote:
> > I set below in .emacs.
> > [... snip 27 lines ...]
>
> No. There is nothing to do for it with ~/.emacs file. Do set
> the things into your local smtp program(ssmtp or msmtp),
> not ~/.emacs file. Then Emacs' bug-report program use it
> by default internally. Do you need to see real examples for
> that?
>
[-- Attachment #2: Type: text/html, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: I cannot send bug report in emacs
2009-08-02 12:39 ` waterloo
@ 2009-08-02 13:17 ` Byung-Hee HWANG
2009-08-02 13:46 ` waterloo
0 siblings, 1 reply; 11+ messages in thread
From: Byung-Hee HWANG @ 2009-08-02 13:17 UTC (permalink / raw)
To: waterloo; +Cc: help-gnu-emacs
On 8/2/09, waterloo <waterloo2005@gmail.com> wrote:
> Yes , can you give me some examples ?
# First i assume:
# [1] you or somebody use Emacs under MS-Windows
# [2] msmtp.exe's path is "C:/msmtp/msmtp.exe"
# Mail Routing:
# Local MUA (Emacs) -> Local MTA (MSMTP) -> ISP's MTA (Google)
# This is msmtp config file (msmtprc.txt)
# msmtprc.txt begins here
defaults
account account1
host smtp.gmail.com
from soyeomul@gmail.com
port 587
auth on
tls on
tls_certcheck off
user soyeomul@gmail.com
password MYPASSWORD
logfile c:\msmtplog.txt
account default : account1
# msmtprc.txt ends here
;; This is only for ~/.emacs file
;; You should tell Emacs where local smtp program is,
;; by editing ~/.emacs file
;; ~/.emacs begins here
(setq send-mail-function 'sendmail-send-it)
(setq sendmail-program "C:/msmtp/msmtp.exe")
(setq message-sendmail-extra-arguments '("-a" "account1"))
;; ~/.emacs ends here
For testing,
Type "C-x m"; it means that type "Ctrl+x" and then type "m".
If the test is OK, then your bug-report program is OK, too.
But you have some trouble,
throw questions to help-gnu-emacs@gnu.org via email again ..;;
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: I cannot send bug report in emacs
2009-08-02 13:17 ` Byung-Hee HWANG
@ 2009-08-02 13:46 ` waterloo
2009-08-02 16:29 ` Byung-Hee HWANG
0 siblings, 1 reply; 11+ messages in thread
From: waterloo @ 2009-08-02 13:46 UTC (permalink / raw)
To: Byung-Hee HWANG; +Cc: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 1301 bytes --]
Thanks a lot!
2009/8/2 Byung-Hee HWANG <bh@izb.knu.ac.kr>
> On 8/2/09, waterloo <waterloo2005@gmail.com> wrote:
> > Yes , can you give me some examples ?
>
> # First i assume:
> # [1] you or somebody use Emacs under MS-Windows
> # [2] msmtp.exe's path is "C:/msmtp/msmtp.exe"
> # Mail Routing:
> # Local MUA (Emacs) -> Local MTA (MSMTP) -> ISP's MTA (Google)
> # This is msmtp config file (msmtprc.txt)
> # msmtprc.txt begins here
> defaults
> account account1
> host smtp.gmail.com
> from soyeomul@gmail.com
> port 587
> auth on
> tls on
> tls_certcheck off
> user soyeomul@gmail.com
> password MYPASSWORD
> logfile c:\msmtplog.txt
> account default : account1
> # msmtprc.txt ends here
>
> ;; This is only for ~/.emacs file
> ;; You should tell Emacs where local smtp program is,
> ;; by editing ~/.emacs file
> ;; ~/.emacs begins here
> (setq send-mail-function 'sendmail-send-it)
> (setq sendmail-program "C:/msmtp/msmtp.exe")
> (setq message-sendmail-extra-arguments '("-a" "account1"))
> ;; ~/.emacs ends here
>
> For testing,
> Type "C-x m"; it means that type "Ctrl+x" and then type "m".
> If the test is OK, then your bug-report program is OK, too.
> But you have some trouble,
> throw questions to help-gnu-emacs@gnu.org via email again ..;;
>
[-- Attachment #2: Type: text/html, Size: 1999 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: I cannot send bug report in emacs
2009-08-02 13:46 ` waterloo
@ 2009-08-02 16:29 ` Byung-Hee HWANG
2009-08-02 16:33 ` waterloo
[not found] ` <mailman.3702.1249230798.2239.help-gnu-emacs@gnu.org>
0 siblings, 2 replies; 11+ messages in thread
From: Byung-Hee HWANG @ 2009-08-02 16:29 UTC (permalink / raw)
To: waterloo; +Cc: help-gnu-emacs
On 8/2/09, waterloo <waterloo2005@gmail.com> wrote:
> Thanks a lot!
Ah.. if your From: is not pretty, then add following into ~/.emacs
(setq user-full-name "Byung-Hee HWANG")
(setq user-mail-address "soyeomul@gmail.com")
Of course, you change above to your things.
;; The screenshot from myself testing. It works fine for me, anyway ..;;
Received: from localhost ([155.230.157.159])
by mx.google.com with ESMTPS id m6sm9112813wag.68.2009.08.02.09.25.33
(version=TLSv1/SSLv3 cipher=RC4-MD5);
Sun, 02 Aug 2009 09:25:34 -0700 (PDT)
Message-ID: <4a75bdfe.06d6720a.102c.2fda@mx.google.com>
Date: Sun, 02 Aug 2009 09:25:34 -0700 (PDT)
From: Byung-Hee HWANG <soyeomul@gmail.com>
To: soyeomul@teramail.com
Subject: Test with Emacs
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: I cannot send bug report in emacs
2009-08-02 16:29 ` Byung-Hee HWANG
@ 2009-08-02 16:33 ` waterloo
[not found] ` <mailman.3702.1249230798.2239.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 11+ messages in thread
From: waterloo @ 2009-08-02 16:33 UTC (permalink / raw)
To: Byung-Hee HWANG; +Cc: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 967 bytes --]
Thanks , I use emacs23 in gentoo .
Recently , I am very busy .
So after some days , I will try according to your advices.
Thanks again!
2009/8/3 Byung-Hee HWANG <bh@izb.knu.ac.kr>
> On 8/2/09, waterloo <waterloo2005@gmail.com> wrote:
> > Thanks a lot!
>
> Ah.. if your From: is not pretty, then add following into ~/.emacs
>
> (setq user-full-name "Byung-Hee HWANG")
> (setq user-mail-address "soyeomul@gmail.com")
>
> Of course, you change above to your things.
>
>
> ;; The screenshot from myself testing. It works fine for me, anyway ..;;
>
> Received: from localhost ([155.230.157.159])
> by mx.google.com with ESMTPS id m6sm9112813wag.68.2009.08.02.09.25.33
> (version=TLSv1/SSLv3 cipher=RC4-MD5);
> Sun, 02 Aug 2009 09:25:34 -0700 (PDT)
> Message-ID: <4a75bdfe.06d6720a.102c.2fda@mx.google.com>
> Date: Sun, 02 Aug 2009 09:25:34 -0700 (PDT)
> From: Byung-Hee HWANG <soyeomul@gmail.com>
> To: soyeomul@teramail.com
> Subject: Test with Emacs
>
[-- Attachment #2: Type: text/html, Size: 1654 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: I cannot send bug report in emacs
[not found] ` <mailman.3702.1249230798.2239.help-gnu-emacs@gnu.org>
@ 2009-08-02 16:50 ` Byung-Hee HWANG
0 siblings, 0 replies; 11+ messages in thread
From: Byung-Hee HWANG @ 2009-08-02 16:50 UTC (permalink / raw)
To: help-gnu-emacs
waterloo <waterloo2005@gmail.com> writes:
> Thanks , I use emacs23 in gentoo .Recently ,
> I am very busy .So after some days ,
> I will try according to your advices.
> Thanks again!
After all testing, i came back to my main desktop. That's good to use
Gentoo. Good job and see you again, friend!
Sincerely,
--
"Don't worry. Clemenza is OK. It's Paulie."
-- Santino Corleone, "Chapter 4", page 93
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2009-08-02 16:50 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-02 4:01 I cannot send bug report in emacs waterloo
2009-08-02 4:19 ` Byung-Hee HWANG
2009-08-02 5:06 ` waterloo
2009-08-02 10:40 ` waterloo
2009-08-02 12:03 ` Byung-Hee HWANG
2009-08-02 12:39 ` waterloo
2009-08-02 13:17 ` Byung-Hee HWANG
2009-08-02 13:46 ` waterloo
2009-08-02 16:29 ` Byung-Hee HWANG
2009-08-02 16:33 ` waterloo
[not found] ` <mailman.3702.1249230798.2239.help-gnu-emacs@gnu.org>
2009-08-02 16:50 ` Byung-Hee HWANG
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).