|
Revision 1053
(checked in by miyagawa, 4 years ago)
|
add more comments to examples
|
| Line | |
|---|
| 1 |
# Bookmark web pages "to read later" on del.icio.us |
|---|
| 2 |
# Send HTML emails out of those bookmarks to your inbox |
|---|
| 3 |
|
|---|
| 4 |
global: |
|---|
| 5 |
# Set timezone to Tokyo |
|---|
| 6 |
timezone: Asia/Tokyo |
|---|
| 7 |
|
|---|
| 8 |
plugins: |
|---|
| 9 |
# Add del.icio.us bookmarks tagged "toread" |
|---|
| 10 |
- module: Subscription::Config |
|---|
| 11 |
config: |
|---|
| 12 |
feed: |
|---|
| 13 |
- http://del.icio.us/rss/miyagawa/toread |
|---|
| 14 |
|
|---|
| 15 |
# Resolve relative links in the entry body |
|---|
| 16 |
- module: Filter::ResolveRelativeLink |
|---|
| 17 |
|
|---|
| 18 |
# Upgrade entry body to fulltext. Even if upgrade fails, store the whole HTML |
|---|
| 19 |
- module: Filter::EntryFullText |
|---|
| 20 |
config: |
|---|
| 21 |
store_html_on_failure: 1 |
|---|
| 22 |
|
|---|
| 23 |
# Deduplicate entries using URL + datetime as a key |
|---|
| 24 |
- module: Filter::Rule |
|---|
| 25 |
rule: |
|---|
| 26 |
module: Deduped |
|---|
| 27 |
|
|---|
| 28 |
# Break each entry as a feed so Gmail will send you emails per entry |
|---|
| 29 |
- module: Filter::BreakEntriesToFeeds |
|---|
| 30 |
|
|---|
| 31 |
# Finally send emails to your Gmail account using localhost SMTP server |
|---|
| 32 |
- module: Publish::Gmail |
|---|
| 33 |
config: |
|---|
| 34 |
mailto: miyagawa@bulknews.net |
|---|
| 35 |
mailfrom: miyagawa@bulknews.net |
|---|
| 36 |
mailroute: |
|---|
| 37 |
via: smtp |
|---|
| 38 |
host: localhost:25 |
|---|