mirror of https://github.com/caronc/apprise
Updated Troubleshooting (markdown)
parent
b106a297b8
commit
2ce07c18e9
|
@ -36,9 +36,9 @@ python apprise --dry-run --tag=devops \
|
|||
```
|
||||
|
||||
## Too Much Data and Overflow Directive
|
||||
Out of the box, Apprise passes the full message (and title) you provide right along to the notification source(s). Some sources can handle a large surplus of data while others might not. All of the [supported notifications services](https://github.com/caronc/apprise/wiki#notification-services) Apprise supports have identify these limits on their respected wiki/help pages.
|
||||
Out of the box, Apprise passes the full message (and title) you provide right along to the notification source(s). Some sources can handle a large surplus of data while others might not. These limitations are documented (*to the best of my knowledge*) on each of the [individual services corresponding wiki pages](https://github.com/caronc/apprise/wiki#notification-services).
|
||||
|
||||
However, if passing a large amount of data is still your goal: Apprise has a somewhat non-elegant way of handling this situation (it's better than nothing). You simply need to tack on the **overflow** parameter somewhere in your Apprise URL; for example:
|
||||
However if you don't want to be bothered with upstream restrictions, Apprise has a somewhat _non-elegant_ way of handling these kinds of situations that you can leverage. You simply need to tack on the **overflow** parameter somewhere in your Apprise URL; for example:
|
||||
* `schema://path/?overflow=split`
|
||||
* `schema://path/?overflow=truncate`
|
||||
* `schema://path/?overflow=upstream`
|
||||
|
|
Loading…
Reference in New Issue