aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2021-10-17 17:21:53 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2021-10-18 18:36:04 +0200
commitacd43c32925fbdfec6b9309aeec4fa43ed731938 (patch)
tree564d797330b88dd82f5ae76578b794d602043791
parent9ca91f695215b1e8eb835345178570798db8ecd2 (diff)
downloadfeed2imap-go-acd43c32925fbdfec6b9309aeec4fa43ed731938.tar.gz
feed2imap-go-acd43c32925fbdfec6b9309aeec4fa43ed731938.tar.bz2
feed2imap-go-acd43c32925fbdfec6b9309aeec4fa43ed731938.zip
Update documentation
-rw-r--r--CHANGELOG.md1
-rw-r--r--README.md2
-rw-r--r--config.yml.example5
3 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index eb47efc..a77e0d0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- Location of the cache can now be specified in the config.yml. Rationale: Easier way of dealing with multiple configurations, as each also requires a distinct cache.
+- [Issue #6](https://github.com/Necoro/feed2imap-go/issues/6): Support old-style configurations with imap targets on each feed. Restriction: Servers must be equal over all connection strings!
### Fixed
- [Issue #62](https://github.com/Necoro/feed2imap-go/issues/62): Allow empty root folder.
diff --git a/README.md b/README.md
index 3f778d6..3b80fa2 100644
--- a/README.md
+++ b/README.md
@@ -52,8 +52,8 @@ warning is issued when an option should now be in another place or is no longer
### Unsupported features of feed2imap
-* IMAP-Target per Feed ([issue #6][i6]); targets only specify the folder relative to the global target
* Maildir ([issue #4][i4])
+* Different IMAP servers in the same configuration file. Please use multiple config files, if this is needed (see also [issue #6][i6]).
## Installation
diff --git a/config.yml.example b/config.yml.example
index cc2c5da..1c51b6b 100644
--- a/config.yml.example
+++ b/config.yml.example
@@ -20,6 +20,11 @@ target:
# The example from above would read:
# target: imap://test%40example.com:passw0rd@mail.example.com:143/INBOX/Feeds
+# NB: Instead of specifying the target on the global level, for compatibility with old configurations, it is also allowed
+# to specify the full URL string for each feed.
+# When doing so, _all_ target strings must point to the same server, else an error will be thrown.
+# See https://github.com/Necoro/feed2imap-go/issues/6 for more details.
+
## Global Options
# Location of the cache. Can also be overwritten on the command line.
cache: "feed.cache"