|
Revision 1070
(checked in by miyagawa, 2 years ago)
|
Widget::Delicious: now you don't need username set in config. Just link to /post
|
| Line | |
|---|
| 1 |
# Fetch Bloglines unread items using Bloglines Web Services API |
|---|
| 2 |
# and send HTML emails for each feed (not entry) |
|---|
| 3 |
|
|---|
| 4 |
global: |
|---|
| 5 |
# Set timezone to your local one |
|---|
| 6 |
timezone: Asia/Tokyo |
|---|
| 7 |
# this make logger logs important information |
|---|
| 8 |
log: |
|---|
| 9 |
level: info |
|---|
| 10 |
|
|---|
| 11 |
plugins: |
|---|
| 12 |
# Fetch your Bloglines updated entries using Bloglines API |
|---|
| 13 |
# Mark them read if the retrieval succceeds. |
|---|
| 14 |
# Fetch optional metadata by using listsubs API |
|---|
| 15 |
- module: Subscription::Bloglines |
|---|
| 16 |
config: |
|---|
| 17 |
username: miyagawa@example.com |
|---|
| 18 |
password: foobar |
|---|
| 19 |
mark_read: 1 |
|---|
| 20 |
fetch_meta: 1 |
|---|
| 21 |
|
|---|
| 22 |
# Add "Add to del.icio.us" Widget in the Email body |
|---|
| 23 |
- module: Widget::Delicious |
|---|
| 24 |
|
|---|
| 25 |
# Add "Manage Bloglines Subscription of this feed" Widget |
|---|
| 26 |
- module: Widget::BloglinesSubscription |
|---|
| 27 |
|
|---|
| 28 |
# Send HTML email to your Gmail account using external SMTP server |
|---|
| 29 |
- module: Publish::Gmail |
|---|
| 30 |
config: |
|---|
| 31 |
mailto: example@gmail.com |
|---|
| 32 |
mailfrom: miyagawa@example.com |
|---|
| 33 |
mailroute: |
|---|
| 34 |
via: smtp |
|---|
| 35 |
host: smtp.example.com |
|---|