Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
From: Sivaram Neelakantan <nsivaram.net@gmail.com>
To: btraven <btraven@nihilo.net>
Cc: info-gnus-english@gnu.org
Subject: Re: .gnus init file
Date: Mon, 02 Feb 2015 09:37:54 +0530	[thread overview]
Message-ID: <87mw4xdkh1.fsf@gmail.com> (raw)
In-Reply-To: <m3a90xr4hy.fsf@nihilo.net> (btraven@nihilo.net's message of "Sun, 01 Feb 2015 10:16:57 -0600")

On Sun, Feb 01 2015,btraven  wrote:

> I have both .emacs and .gnus in ~\ (w32 24.4) and am manually
> transfering gnus stuff from .emacs to .gnus
> Is there a way to have options > customize write to a
> custom-set-variables paragraph in .gnus instead of in .emacs or does all
> the gnus stuff set through customize have to stay in .emacs
>
> Also is this the right place to ask about using openssl, gnutls, and
> other non-Emacs apps needed to make gnus a mail reader as well as a news
> reader?
>
> I have all of this in \emacs\gnutls: 
>
> cacert.pem	      libgnutls-28.dll		openssl.exe
> certtool.exe	      libgnutls-openssl-27.dll	psktool.exe
> danetool.exe	      libhogweed-2-5.dll	ReadMe.txt
> gnutls-cli-debug.exe  libiconv-2.dll		regex2.dll
> gnutls-cli.exe	      libintl-8.dll		srptool.exe
> gnutls-serv.exe       libnettle-4-7.dll		ssleay32.dll
> HashInfo.txt	      libtasn1-6.dll		zlib1.dll
> libeay32.dll	      ocsptool.exe
> libgmp-10.dll	      OpenSSL\ License.txt
>
> and ssl.el in \emacs\site-lisp but the ssl.el may not be current (from
> 1999).
>
> In the emacswiki I read:

I just set up Emacs +gnus+gmail mail send/receive on my win 7 laptop.
And this might not be what you were looking for but here goes anyway.

1.  Download the ezwinports bin files from sourceforge.  Just take all
of them, doesn't matter.  Look for w32-bin files I believe

2.  Put them in c:/gnu/ezwinports or c:/Emacs/ezwinports. err...unzip
them of course.

3. look at your C-h v dynamic-library-alist

Value: ((xpm "libxpm.dll" "xpm4.dll" "libXpm-nox4.dll")
 (png "libpng16.dll" "libpng16-16.dll")
 (tiff "libtiff-5.dll" "libtiff3.dll" "libtiff.dll")
 (jpeg "libjpeg-9.dll")
 (gif "libgif-7.dll")
 (svg "librsvg-2-2.dll")
 (gdk-pixbuf "libgdk_pixbuf-2.0-0.dll")
 (glib "libglib-2.0-0.dll")
 (gobject "libgobject-2.0-0.dll")
 (gnutls "libgnutls-28.dll" "libgnutls-26.dll")
 (libxml2 "libxml2-2.dll" "libxml2.dll")
 (zlib "zlib1.dll" "libz-1.dll"))

These dlls should be there in unzipped directory.

4.  Make sure that ezwinports dir is in the PATH in the "MY Computer"
settings. Adding the path in Emacs doesn't work.  And it has to be
there BEFORE the cygwin path.  which is important.

5.  I have this settings for my .gnus

--8<---------------cut here---------------start------------->8---
(setq mail-sources
      '((pop :server "pop.gmail.com"
             :port 995
             :user "xxxxxxx@gmail.com"
             :password "xxxxx"
             :stream ssl)))
;;if retrieving from spool, delete temp file after 1 days
(setq mail-source-delete-incoming 1)
(setq mail-source-delete-old-incoming-confirm nil)
(eval-after-load "mail-source" '(require 'pop3))
;;
(setq smtpmail-stream-type 'ssl)
(setq smtpmail-smtp-server "smtp.gmail.com")
(setq smtpmail-smtp-service 465)
(setq smtpmail-debug-info t) ; only to debug problems set to t if needed
(setq smtpmail-debug-verb t)
;; ;;so that sent-mail folders see "To" headers instead of from
(setq gnus-extra-headers
      '(To ))
(setq gnus-verbose 7)
(setq gnus-verbose-backends 7)
--8<---------------cut here---------------end--------------->8---

I don't think I used anything other than stock gnus .el files or
anything outside of the the ezwinports.  In fact, I used msmtp before
but since the ezwinports binaries, it's fully native Emacs.

6.  You'd need an .authinfo file in ~/ directory

c:/Users/ADMIN/AppData/Roaming

or somewhere

7. You may want to see this thread for more info

http://lists.gnu.org/archive/html/help-gnu-emacs/2015-01/msg00328.html


8. If this works, gnus would render html and images too.

 sivaram
 -- 


  reply	other threads:[~2015-02-02  4:07 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-01 16:16 btraven
2015-02-02  4:07 ` Sivaram Neelakantan [this message]
     [not found] ` <mailman.19148.1422850086.1147.info-gnus-english@gnu.org>
2015-02-03  8:27   ` B. T. Raven
2015-02-04  2:05     ` Sivaram Neelakantan
2015-02-03 19:17 ` Emanuel Berg
2015-02-04  7:27   ` Tassilo Horn
     [not found]   ` <mailman.19235.1423034855.1147.info-gnus-english@gnu.org>
2015-02-05  1:38     ` Emanuel Berg
2015-02-05  4:08     ` Ed C.
2015-02-05  4:42       ` Ed C.
2015-02-06  1:44         ` Emanuel Berg

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87mw4xdkh1.fsf@gmail.com \
    --to=nsivaram.net@gmail.com \
    --cc=btraven@nihilo.net \
    --cc=info-gnus-english@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 NNTP newsgroup(s).