Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
From: Don Saklad <dsaklad@gnu.org>
Subject: Re: For the complete novice without knowledge of code how to deal with the code for setting up mail in gnus
Date: Mon, 03 Jul 2006 02:31:54 GMT	[thread overview]
Message-ID: <5ibqs7besd.fsf@fencepost.gnu.org> (raw)
In-Reply-To: <7abf1$44a859f0$49fa2da$22944@DIALUPUSA.NET>

          Thank you Ed. B. T. Raven !

          In the future, how could gnus be developed to
          automatically setup for users' mail?... even
          with all the variable predicaments.
          
          The difficulty of giving code for novices to add is
          that the other things that could happen require
          further complicated steps for the novice.


    For the complete novice without good knowledge of code, how
    can setting up mail in gnus be explained?
    
    There's got to be an easier way of explaining what some think
    to be unexplainable. So you don't know lisp, here's another
    explanation you can try...  See if this works... Okay, and
    that explanation is...
    
    Would there be any how to set up mail in gnus for the
    complete novice that doesn't require knowledge of code?... or
    that could make it even more clear than what we get at
    http://www.google.com/search?q=gnus+email


Either add the following to your .emacs or evaluate it with C-x C-e, C-j
or whatever is appropriate in the buffer's context:

(setq user-full-name "your name") ;; an arbitrary string works here
(setq user-mail-address user@yourisp.com)  ;; replace with your isp
assigned user name @ isp name

(setq smtpmail-default-smtp-server "mail.yourisp.com") ;; if this doesn't
work get the correct string from another mail program (i.e. Outlook)
(setq smtpmail-local-domain nil)
(setq send-mail-function 'smtpmail-send-it)

(load-library "smtpmail")

(setenv "MAILHOST" "mail.isp.com")  ;; or whatever: see above
(setq rmail-primary-inbox-list
    '("user@yourisp.com") rmail-pop-password-required t)
(setq gnus-select-method '(nntp "news.isp.com")) ;; or get string from a
mail program known to work. This might not belong in .emacs but in .gnus
or something

(load-library "message")
(setq message-send-mail-function 'smtpmail-send-it)

Then try M-x gnus. Something should work. If there is a gnus wizard
following this thread, I have a question too:

How can I use one email address for mail and one for news, using gnus for
both?

Ed.

      parent reply	other threads:[~2006-07-03  2:31 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-06-29 13:22 Don Saklad
2006-07-02 20:21 ` B. T. Raven
2006-07-03  1:33   ` Johan Bockgård
2006-07-03  4:10     ` B. T. Raven
2006-07-03  2:31   ` Don Saklad [this message]

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=5ibqs7besd.fsf@fencepost.gnu.org \
    --to=dsaklad@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).