all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Multiple IMAP accounts with Gnus/Message ?
@ 2020-09-03 22:12 David Masterson
  2020-09-03 22:46 ` Óscar Fuentes
  2020-09-03 23:14 ` Eric Abrahamsen
  0 siblings, 2 replies; 15+ messages in thread
From: David Masterson @ 2020-09-03 22:12 UTC (permalink / raw)
  To: help-gnu-emacs

I think I see how to setup reading multiple IMAP accounts with Gnus
using gnus-secondary-select-methods, but how can I also set it up so
that email that I send in reply to an email comes from my account on the
IMAP server that I read the email from?
-- 
David Masterson



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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-03 22:12 Multiple IMAP accounts with Gnus/Message ? David Masterson
@ 2020-09-03 22:46 ` Óscar Fuentes
  2020-09-03 23:14 ` Eric Abrahamsen
  1 sibling, 0 replies; 15+ messages in thread
From: Óscar Fuentes @ 2020-09-03 22:46 UTC (permalink / raw)
  To: help-gnu-emacs

David Masterson <dsmasterson92630@outlook.com> writes:

> I think I see how to setup reading multiple IMAP accounts with Gnus
> using gnus-secondary-select-methods, but how can I also set it up so
> that email that I send in reply to an email comes from my account on the
> IMAP server that I read the email from?

I'm not sure I understand your question, but see variable `mail-sources'.




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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-03 22:12 Multiple IMAP accounts with Gnus/Message ? David Masterson
  2020-09-03 22:46 ` Óscar Fuentes
@ 2020-09-03 23:14 ` Eric Abrahamsen
  2020-09-04  2:23   ` 황병희
  2020-09-05  4:33   ` David Masterson
  1 sibling, 2 replies; 15+ messages in thread
From: Eric Abrahamsen @ 2020-09-03 23:14 UTC (permalink / raw)
  To: help-gnu-emacs

David Masterson <dsmasterson92630@outlook.com> writes:

> I think I see how to setup reading multiple IMAP accounts with Gnus
> using gnus-secondary-select-methods, but how can I also set it up so
> that email that I send in reply to an email comes from my account on the
> IMAP server that I read the email from?

I think you probably want "posting-styles". The relevant bits of my
config:

(setq gnus-posting-styles
      '(("NPR"
	 (address "eric@paper-republic.org")
	 (gcc "nnimap+NPR:Sent"))
	("CHB"
	 (address "eric@coalhillbooks.com")
	 (gcc "nnimap+CHB:Sent"))
	("NEA"
	 (address "eric@ericabrahamsen.net")
	 (gcc "nnimap+NEA:Sent"))))

Then of course you'll want to set the appropriate SMTP server, see here:

https://www.emacswiki.org/emacs/MultipleSMTPAccounts

HTH,
Eric




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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-03 23:14 ` Eric Abrahamsen
@ 2020-09-04  2:23   ` 황병희
  2020-09-05  4:37     ` David Masterson
  2020-09-05  4:33   ` David Masterson
  1 sibling, 1 reply; 15+ messages in thread
From: 황병희 @ 2020-09-04  2:23 UTC (permalink / raw)
  To: help-gnu-emacs

Eric Abrahamsen <eric@ericabrahamsen.net> writes:

> David Masterson <dsmasterson92630@outlook.com> writes:
>
>> I think I see how to setup reading multiple IMAP accounts with Gnus
>> using gnus-secondary-select-methods, but how can I also set it up so
>> that email that I send in reply to an email comes from my account on the
>> IMAP server that I read the email from?
>
> I think you probably want "posting-styles". The relevant bits of my
> config:
>
> (setq gnus-posting-styles
>       '(("NPR"
> 	 (address "eric@paper-republic.org")
> 	 (gcc "nnimap+NPR:Sent"))
> 	("CHB"
> 	 (address "eric@coalhillbooks.com")
> 	 (gcc "nnimap+CHB:Sent"))
> 	("NEA"
> 	 (address "eric@ericabrahamsen.net")
> 	 (gcc "nnimap+NEA:Sent"))))
>
> Then of course you'll want to set the appropriate SMTP server, see here:
>
> https://www.emacswiki.org/emacs/MultipleSMTPAccounts

Hi, David^^^

[Eric's comments + X-Message-SMTP-Method] are good for you.

Sincerely, Gnus fan Byung-Hee

-- 
^고맙습니다 _白衣從軍_ 감사합니다_^))//



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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-03 23:14 ` Eric Abrahamsen
  2020-09-04  2:23   ` 황병희
@ 2020-09-05  4:33   ` David Masterson
  2020-09-05  5:07     ` Óscar Fuentes
  2020-09-05  5:11     ` Emanuel Berg via Users list for the GNU Emacs text editor
  1 sibling, 2 replies; 15+ messages in thread
From: David Masterson @ 2020-09-05  4:33 UTC (permalink / raw)
  To: Eric Abrahamsen; +Cc: help-gnu-emacs

Eric Abrahamsen <eric@ericabrahamsen.net> writes:

> David Masterson <dsmasterson92630@outlook.com> writes:
>
>> I think I see how to setup reading multiple IMAP accounts with Gnus
>> using gnus-secondary-select-methods, but how can I also set it up so
>> that email that I send in reply to an email comes from my account on the
>> IMAP server that I read the email from?
>
> I think you probably want "posting-styles". The relevant bits of my
> config:
>
> (setq gnus-posting-styles
>       '(("NPR"
> 	 (address "eric@paper-republic.org")
> 	 (gcc "nnimap+NPR:Sent"))
> 	("CHB"
> 	 (address "eric@coalhillbooks.com")
> 	 (gcc "nnimap+CHB:Sent"))
> 	("NEA"
> 	 (address "eric@ericabrahamsen.net")
> 	 (gcc "nnimap+NEA:Sent"))))
>
> Then of course you'll want to set the appropriate SMTP server, see here:
>
> https://www.emacswiki.org/emacs/MultipleSMTPAccounts

That looks interesting!  I don't think I've seen gnus-posting-styles
before.  If it is what it looks like, this is definitely something that
should be discussed in the Gnus Info pages ((gnus)Top/Select
Methods/Using IMAP).

Thanks, I'll take a look.

-- 
David Masterson



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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-04  2:23   ` 황병희
@ 2020-09-05  4:37     ` David Masterson
  2020-09-05 11:50       ` Leo Butler
  2020-09-05 15:30       ` Eric Abrahamsen
  0 siblings, 2 replies; 15+ messages in thread
From: David Masterson @ 2020-09-05  4:37 UTC (permalink / raw)
  To: 황병희; +Cc: help-gnu-emacs

soyeomul@vladivostok.yw.doraji.xyz (황병희) writes:

> Eric Abrahamsen <eric@ericabrahamsen.net> writes:
>
>> Then of course you'll want to set the appropriate SMTP server, see here:
>>
>> https://www.emacswiki.org/emacs/MultipleSMTPAccounts
>
> [Eric's comments + X-Message-SMTP-Method] are good for you.

Could you elaborate on X-Message-SMTP-Method ?
1. What is it? (I think I kind of know)
2. How would you use/set it from Gnus?
-- 
David Masterson



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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-05  4:33   ` David Masterson
@ 2020-09-05  5:07     ` Óscar Fuentes
  2020-09-05  5:12       ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-09-05  5:11     ` Emanuel Berg via Users list for the GNU Emacs text editor
  1 sibling, 1 reply; 15+ messages in thread
From: Óscar Fuentes @ 2020-09-05  5:07 UTC (permalink / raw)
  To: help-gnu-emacs

David Masterson <dsmasterson92630@outlook.com> writes:

>> I think you probably want "posting-styles". The relevant bits of my
>> config:
>>
>> (setq gnus-posting-styles
>>       '(("NPR"
>> 	 (address "eric@paper-republic.org")
>> 	 (gcc "nnimap+NPR:Sent"))
>> 	("CHB"
>> 	 (address "eric@coalhillbooks.com")
>> 	 (gcc "nnimap+CHB:Sent"))
>> 	("NEA"
>> 	 (address "eric@ericabrahamsen.net")
>> 	 (gcc "nnimap+NEA:Sent"))))
>>
>> Then of course you'll want to set the appropriate SMTP server, see here:
>>
>> https://www.emacswiki.org/emacs/MultipleSMTPAccounts
>
> That looks interesting!  I don't think I've seen gnus-posting-styles
> before.  If it is what it looks like, this is definitely something that
> should be discussed in the Gnus Info pages ((gnus)Top/Select
> Methods/Using IMAP).

Posting styles are not specific to IMAP. They are explained on the Gnus
Info pages.




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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-05  4:33   ` David Masterson
  2020-09-05  5:07     ` Óscar Fuentes
@ 2020-09-05  5:11     ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-09-05  5:17       ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-09-05  6:11       ` David Masterson
  1 sibling, 2 replies; 15+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-09-05  5:11 UTC (permalink / raw)
  To: help-gnu-emacs

David Masterson wrote:

> That looks interesting! I don't think I've seen
> gnus-posting-styles before. If it is what it looks
> like, this is definitely something that should be
> discussed in the Gnus Info pages ((gnus)Top/Select
> Methods/Using IMAP).

Well, posting styles is mostly used in a simple way.
Back in the Usenet days there were active and sound
groups about everything. So for example... if you had
two activities, women's dresses and helicopters, and
two corresponding homepages with cool data and photos,
even tho you yourself weren't sensitive about this
unusual combination, for the purpose of healthy
on-topic discussion with colleagues, you don't want
one signature but two, otherwise you'd be "what
a tool" on alt.women.dresses and ... yeah, you get
it :)

  (info "(gnus) Posting Styles")

Isn't this rather an article
customizing/washing issue?

  (info "(gnus) Customizing Articles")

  (info "(gnus) Article Washing")

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-05  5:07     ` Óscar Fuentes
@ 2020-09-05  5:12       ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-09-05  6:01         ` David Masterson
  0 siblings, 1 reply; 15+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-09-05  5:12 UTC (permalink / raw)
  To: help-gnu-emacs

Óscar Fuentes wrote:

> Posting styles are not specific to IMAP. They are
> explained on the Gnus Info pages.

(info "(gnus) Posting Styles")

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-05  5:11     ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-09-05  5:17       ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-09-05  6:11       ` David Masterson
  1 sibling, 0 replies; 15+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2020-09-05  5:17 UTC (permalink / raw)
  To: help-gnu-emacs

>> That looks interesting! I don't think I've seen
>> gnus-posting-styles before. If it is what it looks
>> like, this is definitely something that should be
>> discussed in the Gnus Info pages ((gnus)Top/Select
>> Methods/Using IMAP).
>
> Well, posting styles is mostly used in a simple
> way. Back in the Usenet days there were active and
> sound groups about everything. So for example... if
> you had two activities, women's dresses and
> helicopters, and two corresponding homepages with
> cool data and photos, even tho you yourself weren't
> sensitive about this unusual combination, for the
> purpose of healthy on-topic discussion with
> colleagues, you don't want one signature but two,
> otherwise you'd be "what a tool" on
> alt.women.dresses and ... yeah, you get it :)
>
>   (info "(gnus) Posting Styles")
>
> Isn't this rather an article
> customizing/washing issue?
>
>   (info "(gnus) Customizing Articles")
>
>   (info "(gnus) Article Washing")

This answers another question which I can't find
right now... maybe it doesn't exist? :O no, it
does :) just not this one

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-05  5:12       ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-09-05  6:01         ` David Masterson
  0 siblings, 0 replies; 15+ messages in thread
From: David Masterson @ 2020-09-05  6:01 UTC (permalink / raw)
  To: help-gnu-emacs

Emanuel Berg via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org> writes:

> Óscar Fuentes wrote:
>
>> Posting styles are not specific to IMAP. They are
>> explained on the Gnus Info pages.
>
> (info "(gnus) Posting Styles")

Thanks

-- 
David Masterson



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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-05  5:11     ` Emanuel Berg via Users list for the GNU Emacs text editor
  2020-09-05  5:17       ` Emanuel Berg via Users list for the GNU Emacs text editor
@ 2020-09-05  6:11       ` David Masterson
  1 sibling, 0 replies; 15+ messages in thread
From: David Masterson @ 2020-09-05  6:11 UTC (permalink / raw)
  To: help-gnu-emacs

Emanuel Berg via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org> writes:

> David Masterson wrote:
>
>> That looks interesting! I don't think I've seen
>> gnus-posting-styles before. If it is what it looks
>> like, this is definitely something that should be
>> discussed in the Gnus Info pages ((gnus)Top/Select
>> Methods/Using IMAP).
>
> Well, posting styles is mostly used in a simple way.
> Back in the Usenet days there were active and sound
> groups about everything. So for example... if you had
> two activities, women's dresses and helicopters, and
> two corresponding homepages with cool data and photos,
> even tho you yourself weren't sensitive about this
> unusual combination, for the purpose of healthy
> on-topic discussion with colleagues, you don't want
> one signature but two, otherwise you'd be "what
> a tool" on alt.women.dresses and ... yeah, you get
> it :)
>
>   (info "(gnus) Posting Styles")
>
> Isn't this rather an article
> customizing/washing issue?
>
>   (info "(gnus) Customizing Articles")
>
>   (info "(gnus) Article Washing")

I don't think so.  Article Washing is for the display of articles before
you read them.  What I'm looking for is how to post a new article (email
really) on a server based upon the group I am reading.

-- 
David Masterson



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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-05  4:37     ` David Masterson
@ 2020-09-05 11:50       ` Leo Butler
  2020-09-05 15:30       ` Eric Abrahamsen
  1 sibling, 0 replies; 15+ messages in thread
From: Leo Butler @ 2020-09-05 11:50 UTC (permalink / raw)
  To: David Masterson; +Cc: help-gnu-emacs

David Masterson <dsmasterson92630@outlook.com> writes:

> ********************************************************
> Caution: This message was sent from outside the University of Manitoba.
> ********************************************************
>
> soyeomul@vladivostok.yw.doraji.xyz (황병희) writes:
>
>> Eric Abrahamsen <eric@ericabrahamsen.net> writes:
>>
>>> Then of course you'll want to set the appropriate SMTP server, see here:
>>>
>>> https://www.emacswiki.org/emacs/MultipleSMTPAccounts
>>
>> [Eric's comments + X-Message-SMTP-Method] are good for you.
>
> Could you elaborate on X-Message-SMTP-Method ?
> 1. What is it? (I think I kind of know)
> 2. How would you use/set it from Gnus?

You can set an X-Message-SMTP-Method in an entry of gnus-posting-styles.
Here's snippet from mine:


(setq gnus-posting-styles '(...
      ("UManitoba:.+"
          (address "Leo.Butler@UManitoba.ca")
          (X-Message-SMTP-Method "smtp smtp.office365.com 587 Leo.Butler@umanitoba.ca"))
      ...)

When I compose an email like this one, it drops that header into the
buffer and that ensures the correct server is used.

Leo



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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-05  4:37     ` David Masterson
  2020-09-05 11:50       ` Leo Butler
@ 2020-09-05 15:30       ` Eric Abrahamsen
  2020-09-06 22:20         ` David Masterson
  1 sibling, 1 reply; 15+ messages in thread
From: Eric Abrahamsen @ 2020-09-05 15:30 UTC (permalink / raw)
  To: help-gnu-emacs

David Masterson <dsmasterson92630@outlook.com> writes:

> soyeomul@vladivostok.yw.doraji.xyz (황병희) writes:
>
>> Eric Abrahamsen <eric@ericabrahamsen.net> writes:
>>
>>> Then of course you'll want to set the appropriate SMTP server, see here:
>>>
>>> https://www.emacswiki.org/emacs/MultipleSMTPAccounts
>>
>> [Eric's comments + X-Message-SMTP-Method] are good for you.
>
> Could you elaborate on X-Message-SMTP-Method ?
> 1. What is it? (I think I kind of know)
> 2. How would you use/set it from Gnus?

One source of confusion is that this particular bit of information is
described in the Message manual (Mail Variables), not the Gnus manual.




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

* Re: Multiple IMAP accounts with Gnus/Message ?
  2020-09-05 15:30       ` Eric Abrahamsen
@ 2020-09-06 22:20         ` David Masterson
  0 siblings, 0 replies; 15+ messages in thread
From: David Masterson @ 2020-09-06 22:20 UTC (permalink / raw)
  To: Eric Abrahamsen; +Cc: help-gnu-emacs

Eric Abrahamsen <eric@ericabrahamsen.net> writes:

> David Masterson <dsmasterson92630@outlook.com> writes:
>
>> soyeomul@vladivostok.yw.doraji.xyz (황병희) writes:
>>
>>> Eric Abrahamsen <eric@ericabrahamsen.net> writes:
>>>
>>>> Then of course you'll want to set the appropriate SMTP server, see here:
>>>>
>>>> https://www.emacswiki.org/emacs/MultipleSMTPAccounts
>>>
>>> [Eric's comments + X-Message-SMTP-Method] are good for you.
>>
>> Could you elaborate on X-Message-SMTP-Method ?
>> 1. What is it? (I think I kind of know)
>> 2. How would you use/set it from Gnus?
>
> One source of confusion is that this particular bit of information is
> described in the Message manual (Mail Variables), not the Gnus manual.

Thanks

-- 
David Masterson



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

end of thread, other threads:[~2020-09-06 22:20 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-03 22:12 Multiple IMAP accounts with Gnus/Message ? David Masterson
2020-09-03 22:46 ` Óscar Fuentes
2020-09-03 23:14 ` Eric Abrahamsen
2020-09-04  2:23   ` 황병희
2020-09-05  4:37     ` David Masterson
2020-09-05 11:50       ` Leo Butler
2020-09-05 15:30       ` Eric Abrahamsen
2020-09-06 22:20         ` David Masterson
2020-09-05  4:33   ` David Masterson
2020-09-05  5:07     ` Óscar Fuentes
2020-09-05  5:12       ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-05  6:01         ` David Masterson
2020-09-05  5:11     ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-05  5:17       ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-09-05  6:11       ` David Masterson

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.