this post was submitted on 01 Nov 2023
1 points (100.0% liked)

Emacs

310 readers
1 users here now

A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!

Get Emacs

Rules

  1. Posts should be emacs related
  2. Be kind please
  3. Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.

Emacs Resources

Emacs Tutorials

Useful Emacs configuration files and distributions

Quick pain-saver tip

founded 1 year ago
MODERATORS
 

I'm trying to get Elfeed to work with FreshRSS. I know that the FreshRSS API works correctly because I tested it with an RSS reader on my iPad and iPhone and it syncs correctly with the login/password credentials and the API url.

However, with Elfeed, I get nothing. I'm sharing my elfeed setup below in the hopes that someone might let me know if I'm doing anything wrong.

(use-package elfeed
:bind
("C-x e" . elfeed))

(require 'elfeed-goodies)

(use-package elfeed-protocol
:ensure t
:demand t
:after elfeed
:config
:custom
(elfeed-protocol-fever-maxsize 10000)
(elfeed-use-curl t)
(elfeed-set-timeout 36000)
;;(elfeed-log-level 'debug)
;;(toggle-debug-on-error)
(elfeed-curl-extra-arguments '("--insecure"))
(setq elfeed-protocol-enabled-protocols '(fever newsblur owncloud ttrss))
(elfeed-protocol-enable)
(setq elfeed-protocol-fever-update-unread-only t)
(setq elfeed-protocol-fever-fetch-category-as-tag t)
(setq elfeed-protocol-feeds '(("fever+http://username@mydomain.org"
:api-url "http://mydomain.org/api/fever.php"
:password "my password"))))

you are viewing a single comment's thread
view the rest of the comments
[–] StrangeAstronomer@alien.top 1 points 10 months ago

I can't help with your problem (other than maybe try knocking the config back to the absolute minimum and if that works then try adding back bits until it breaks again) but i can't believe you're re-mapping C-x e, it's just so useful as kmacro-end-and-call-macro.