-
Notifications
You must be signed in to change notification settings - Fork 12
/
paperless.rc
47 lines (46 loc) · 1.39 KB
/
paperless.rc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
:ocr_engine: pdfpenpro
:date_locale: us
:date_format: '%Y-%m-%d'
:date_default: filedate
:destination: '@Inbox'
:text_ext: txt md mmd
:simulate: false
:service: evernote
:rules:
-
description: Date Rule
scope: content
condition: <date>
-
description: Find Francisca anywhere and tag her
scope: content filename
condition: Francisc\w+
tags: <match>
-
description: Find American Funds and do things to it
scope: content
condition: American Funds
tags: retirement
destination:
service: evernote
title: '<match> Statement <date=%Y-%m>'
...
# Sample config with explanation
#
:ocr: pdfpenpro || pdfpenpro || none
:date_format: us || euro
:date_default: filedate || today
:text_ext: txt md mmd
:html_ext: html htm
:simulate: false
:destination: '@Inbox' (Evernote = notebook, Finder = Folder path or <nomove>)
:service: evernote (no others supported for now)
-
scope: content || filename
condition: Fran\w+ (Words or Regex. <date> is the special condition that will search for the date within scope and set it to the creation date.)
tags: tag1 tag2
notebook: '@Inbox' (must put special chars in quotes)
title: '<date=%Y-%m> Statement' (<date> with special fomat string. This can be used in any field.)
date: <match> (the <match> var places the text that the condition matches. This can be used in any field.)
service: evernote (Overwrite global setting.)