Thanks a lot!
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 ..;;