danielc:
The problem is that calibre doesn't recognize 'feed://' as a valid url source. I replaced it with 'http://' and the recipe correctly downloads content from the site.
Code:
class AdvancedUserRecipe1252944534(BasicNewsRecipe):
title = u"Jamie's Recipes"
oldest_article = 7
max_articles_per_feed = 5
feeds = [(u"Jamie's Daily Recipe", u'http://rss.feedsportal.com/c/32402/f/467087/index.rss')]
Kovid, is it possible to recognize 'feed://' as a valid url prefix?
G