Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* For the complete novice without knowledge of code how to deal with the code for setting up mail in gnus
@ 2006-06-29 13:22 Don Saklad
  2006-07-02 20:21 ` B. T. Raven
  0 siblings, 1 reply; 5+ messages in thread
From: Don Saklad @ 2006-06-29 13:22 UTC (permalink / raw)


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

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

* Re: For the complete novice without knowledge of code how to deal with the code for setting up mail in gnus
  2006-06-29 13:22 For the complete novice without knowledge of code how to deal with the code for setting up mail in gnus Don Saklad
@ 2006-07-02 20:21 ` B. T. Raven
  2006-07-03  1:33   ` Johan Bockgård
  2006-07-03  2:31   ` Don Saklad
  0 siblings, 2 replies; 5+ messages in thread
From: B. T. Raven @ 2006-07-02 20:21 UTC (permalink / raw)



"Don Saklad" <dsaklad@gnu.org> wrote in message
news:5i4py4jdwg.fsf@fencepost.gnu.org...
> 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.

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

* Re: For the complete novice without knowledge of code how to deal with the code for setting up mail in gnus
  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
  1 sibling, 1 reply; 5+ messages in thread
From: Johan Bockgård @ 2006-07-03  1:33 UTC (permalink / raw)


"B. T. Raven" <ecinmn@alcisp.com> writes:

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

Like

    (setq gnus-posting-styles
          '(...
            (message-news-p
             (address "me+news@foo.bar"))
            ...))

See (info "(gnus)Posting Styles")

-- 
Johan Bockgård

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

* Re: For the complete novice without knowledge of code how to deal with the code for setting up mail in gnus
  2006-07-02 20:21 ` B. T. Raven
  2006-07-03  1:33   ` Johan Bockgård
@ 2006-07-03  2:31   ` Don Saklad
  1 sibling, 0 replies; 5+ messages in thread
From: Don Saklad @ 2006-07-03  2:31 UTC (permalink / raw)


          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.

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

* Re: For the complete novice without knowledge of code how to deal with the code for setting up mail in gnus
  2006-07-03  1:33   ` Johan Bockgård
@ 2006-07-03  4:10     ` B. T. Raven
  0 siblings, 0 replies; 5+ messages in thread
From: B. T. Raven @ 2006-07-03  4:10 UTC (permalink / raw)



"Johan Bockgård" <bojohan+news@dd.chalmers.se> wrote in message
news:yoijbqs7jwv4.fsf@iota202.dd.chalmers.se...
> "B. T. Raven" <ecinmn@alcisp.com> writes:
>
> > How can I use one email address for mail and one for news, using
> > gnus for both?
>
> Like
>
>     (setq gnus-posting-styles
>           '(...
>             (message-news-p
>              (address "me+news@foo.bar"))
>             ...))
>
> See (info "(gnus)Posting Styles")
>
> --
> Johan Bockgård

Thanks, Johan. That looks like some light, entertaining reading. ;-)

To Don, the first sentence of the info doc is:

"All them variables, they make my head swim." There is an inevitable
tension between ease of use and powerful functionality in any software or
indeed in any tool. If the developers had decided to make emacs and gnus
an easily configurable black box then no one would be interested in it.
Remember "....  Now, patience; and remember patience is the great thing,
and above all things else we must avoid anything like being or becoming
out of patience...."

Ed.

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

end of thread, other threads:[~2006-07-03  4:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-29 13:22 For the complete novice without knowledge of code how to deal with the code for setting up mail in gnus 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 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).