rcarmo / rss2imap

An adaptation of rss2mail that uses IMAP directly
87 stars 13 forks source link

Auto-subscribe to folders #2

Closed phavx closed 11 years ago

phavx commented 11 years ago

Thanks for giving me the hint on the folder support.

What I found: a) r2e add feed BASE.SUBFolder works as expected, at least on my server b) folders created this way aren't automatically subscribed to, that should be an option?

Currently in line 213 of rss2email.py it says: 'mailserver.create(folder)' adding 'mailserver.subscribe(folder)'

should do it.

rcarmo commented 11 years ago

Actually, subscriptions are done on each MUA.

Having rss2email do the subscription would most likely do nothing, but it's easy enough to add. I'd rather you tested it and submitted a pull request, though.

R.

On Mar 20, 2013, at 24:33 , phavx notifications@github.com wrote:

Thanks for giving me the hint on the folder support.

What I found: a) r2e add feed BASE.SUBFolder works as expected, at least on my server b) folders created this way aren't automatically subscribed to, that should be an option?

Currently in line 213 of rss2email.py it says: 'mailserver.create(folder)' adding 'mailserver.subscribe(folder)'

should do it.

— Reply to this email directly or view it on GitHub.

rcarmo commented 11 years ago

Fixed in latest commit.