Re: What happened to nnslashdot and nnultimate

2014-07-21 Thread Jeffrey DeLeo
You can subscribe to the group "gwene.org.slashdot" which is on the
server "news.gwene.org". Gwene is an RSS (and Atom, etc) to Usenet News
(i. e., NNTP) gateway.  Works quite well.


___
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Displaying Images in HTML Mail

2015-03-07 Thread Jeffrey DeLeo
You could also look at the following variables:
mm-inline-text-html-with-images, mm-w3m-safe-url-regexp


___
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Standard way to use Gnus?

2015-03-19 Thread Jeffrey DeLeo
A couple of things come to mind:

Topics: You can group all related email/newsgoups together (see: "Group
Topics" in Gnus manual). 

Gwene: Gwene creates a news group out of RSS feeds. So you can bring all
your disparate feeds into one place, Gnus. Take a look at:
http://gwene.org/about.php


___
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Trouble setting up Gnus + OfflineIMAP + dovecot

2015-10-22 Thread Jeffrey DeLeo
Taking dovecot out of the mix for the moment, you could try:

(setq gnus-secondary-select-methods
  '((nnmaildir "GMail" (directory "~/Maildir-gmail"

I guess your .offlineimaprc includes something like:
[Account Gmail]
# Identifier for the local repository; e.g. the maildir to be synced via IMAP.
localrepository = Gmail-local

[Repository Gmail-local]
type = Maildir
localfolders = ~/Maildir-gmail
...



___
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Gnus Multiple Roles

2015-12-10 Thread Jeffrey DeLeo
With posting styles, you can specify things like which email address to
use, Organization, etc for a specific group, or topic. On that group or
topic in gnus, type "G c", which runs the command "gnus-group-customize".

Look for "Posting style", you can insert different things like address,
Organization, etc there.


___
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Gnus Multiple Roles

2015-12-11 Thread Jeffrey DeLeo

bvrag...@iitk.ac.in (B.V. Raghav) writes:

> Posting styles do allow me to change all the headers. What I actually
> want to do is use a different smtp server all together. For example,
> when I reply to a mail from b...@abc.tld, I want to use the server
> smtp.abc.tld, and on the other hand when I reply to a mail from
> b...@xyz.tld, i want to use the server smtp.xyz.tld

I understand. I don't do this in emacs; on my linux system I run postfix
to handle mail. Postfix has been configured to use different smtp
servers depending on the email address used.


___
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Problem splitting (nnimap-inbox "[Gmail]/Alle Nachrichten")

2021-01-19 Thread Jeffrey DeLeo
Lars-Johan Liman  writes:

> respository. I do _nothing_ in Gmail. I download everything to my Gnus
> machine and split the mail into folders there. Gmail knows nothing
> about my folders. It just stores my mail until I download it. This may

Do you have gnus split the gmail messages to local folders? Would you
share your splitting code?

My experience is this: to copy a gmail message into a local nnml folder
I need to first copy the message into the folder, then move the message
to gmail trash. If I just move the message to the local nnml folder it
never gets deleted from gmail.  I haven't worked out write split code in
gnus that could do this for me - but I would be delighted if someone
else had...


___
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Problem splitting (nnimap-inbox "[Gmail]/Alle Nachrichten")

2021-01-21 Thread Jeffrey DeLeo
Thank you to Bob and Lars for your comments.

Lars: setup a little complicated - offlineimap syncs gmail to local file
system; gnus talks imap protocol using dovecot to local file system. Means I
never have to wait for anything in gnus, which is where I do all mail
activity.

Bob, I do as you say, explicitly moving messages to
"nnimap+imap.gmail.com:[Gmail]/Trash" when I want to delete them. I
would like to splitting in gnus since one can do all sorts of things in
gnus.

Once before I spent time playing with Fancy Mail Splitting, but I
could not get it to do what I wanted. Which is: *copy* a message into a
local nnml group and then delete it by *moving* it into
"nnimap+imap.gmail.com:[Gmail]/Trash".

This is gnus, of course it is possible. Just haven't worked out how yet!
The problem that stopped me before as I recall was this: could not work
out how to have the split *copy* instead of *moving*.



___
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: Configuration example for mbsync + dovecot + Gnus

2021-01-25 Thread Jeffrey DeLeo

Here is my setup using offlineimap to sync mail with gmail and dovecot to speak 
imap with gnus.

** .gnus file

  (setq gnus-select-method
  '(nntp "localhost"))

(setq gnus-secondary-select-methods
  '(
(nnimap "Mail"
(nnimap-stream shell)
(nnimap-shell-program
"/usr/lib/dovecot/imap -o 
mail_location=maildir:~/Maildir/:LAYOUT=fs")
 )
(nnfolder "archive"
  (nnfolder-directory   "~/Documents/gnus/Mail/archive")
  (nnfolder-active-file "~/Documents/gnus/Mail/archive/active")
  (nnfolder-get-new-mail nil)
  (nnfolder-inhibit-expiry t

(gnus-registry-initialize)

  
** dovecot
Important line in /etc/dovecot/conf.d/10-mail.conf:

# this is the important line
mail_location = maildir:~/Maildir:LAYOUT=fs

** offlineimap
This is contents of ~/.offlineimaprc
   
[general]

# defines get_pass()
pythonfile = ~/.offlineimap.py
# List of accounts to be synced, separated by a comma.
accounts = Gmail

[Account Gmail]
# Identifier for the local repository; e.g. the maildir to be synced via IMAP.
localrepository = Gmail-local
# Identifier for the remote repository; i.e. the actual IMAP, usually non-local.
remoterepository = Gmail-remote

[Repository Gmail-local]
type = Maildir
localfolders = ~/Maildir/Gmail

[Repository Gmail-remote]
type = Gmail
remoteuser = m...@gmail.com
remotepasseval = get_pass("GMail")
folderfilter = lambda foldername: foldername in ['INBOX', 'Dev', 
'[Gmail]/Trash']
# Necessary as of OfflineIMAP 6.5.4
sslcacertfile = /etc/ssl/certs/ca-certificates.crt

___
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english


Re: RSS with Gnus (elfeed backend?)

2021-04-02 Thread Jeffrey DeLeo
Have you tried gwene.org?
You register the rss feed with the site, and it shows up as a newsgroup
you can subscribe to via news.gwene.org. I follow many
sites in gnus via this method. You may find many of the site you wish to
follow are already there...


___
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english