This commit is contained in:
Daniel Quinn 2016-02-21 01:43:48 +00:00
parent c7787bc076
commit 55a7dc2444

View File

@ -170,7 +170,8 @@ SCRATCH_DIR = "/tmp/paperless"
CONSUMPTION_DIR = os.environ.get("PAPERLESS_CONSUME") CONSUMPTION_DIR = os.environ.get("PAPERLESS_CONSUME")
# If you want to use IMAP mail consumption, populate this with useful values. # If you want to use IMAP mail consumption, populate this with useful values.
# If you leave HOST set to None, we assume you're not going to use this feature. # If you leave HOST set to None, we assume you're not going to use this
# feature.
MAIL_CONSUMPTION = { MAIL_CONSUMPTION = {
"HOST": os.environ.get("PAPERLESS_CONSUME_MAIL_HOST"), "HOST": os.environ.get("PAPERLESS_CONSUME_MAIL_HOST"),
"PORT": os.environ.get("PAPERLESS_CONSUME_MAIL_PORT"), "PORT": os.environ.get("PAPERLESS_CONSUME_MAIL_PORT"),
@ -180,8 +181,8 @@ MAIL_CONSUMPTION = {
"INBOX": "INBOX" # The name of the inbox on the server "INBOX": "INBOX" # The name of the inbox on the server
} }
# This is used to encrypt the original documents and decrypt them later when you # This is used to encrypt the original documents and decrypt them later when
# want to download them. Set it and change the permissions on this file to # you want to download them. Set it and change the permissions on this file to
# 0600, or set it to `None` and you'll be prompted for the passphrase at # 0600, or set it to `None` and you'll be prompted for the passphrase at
# runtime. The default looks for an environment variable. # runtime. The default looks for an environment variable.
# DON'T FORGET TO SET THIS as leaving it blank may cause some strange things # DON'T FORGET TO SET THIS as leaving it blank may cause some strange things
@ -189,7 +190,7 @@ MAIL_CONSUMPTION = {
# files. # files.
PASSPHRASE = os.environ.get("PAPERLESS_PASSPHRASE") PASSPHRASE = os.environ.get("PAPERLESS_PASSPHRASE")
# If you intend to use the "API" to push files into the consumer, you'll need to # If you intend to use the "API" to push files into the consumer, you'll need
# provide a shared secret here. Leaving this as the default will disable the # to provide a shared secret here. Leaving this as the default will disable
# API. # the API.
UPLOAD_SHARED_SECRET = os.environ.get("PAPERLESS_SECRET", "") UPLOAD_SHARED_SECRET = os.environ.get("PAPERLESS_SECRET", "")