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"))))

  • StrangeAstronomer@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    11 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.