diff options
author | cedricbonhomme <devnull@localhost> | 2012-05-02 15:37:13 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2012-05-02 15:37:13 +0200 |
commit | 8941e6d5b12010df88bcfe41bff46f3a96987fd3 (patch) | |
tree | 84884b1e7c87ab0c70eba6982266ad27a0b6f752 /source/conf.py | |
parent | Connection on the MongoDB database with authentication OK. (diff) | |
download | newspipe-8941e6d5b12010df88bcfe41bff46f3a96987fd3.tar.gz newspipe-8941e6d5b12010df88bcfe41bff46f3a96987fd3.tar.bz2 newspipe-8941e6d5b12010df88bcfe41bff46f3a96987fd3.zip |
Authentication to the MongoDB database when retrieving feeds.
Diffstat (limited to 'source/conf.py')
-rw-r--r-- | source/conf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/conf.py b/source/conf.py index 60289315..9f6724d5 100644 --- a/source/conf.py +++ b/source/conf.py @@ -39,8 +39,8 @@ path = os.path.abspath(".") MONGODB_ADDRESS = config.get('MongoDB', 'address') MONGODB_PORT = int(config.get('MongoDB', 'port')) -MONGODB_USER = config.get('MongoDB', 'user') -MONGODB_PASSWORD = config.get('MongoDB', 'password') +#MONGODB_USER = config.get('MongoDB', 'user') +#MONGODB_PASSWORD = config.get('MongoDB', 'password') mail_from = config.get('mail','mail_from') mail_to = config.get('mail','mail_to') @@ -48,4 +48,4 @@ smtp_server = config.get('mail','smtp') username = config.get('mail','username') password = config.get('mail','password') -DIASPORA_POD = config.get('misc', 'diaspora_pod')
\ No newline at end of file +DIASPORA_POD = config.get('misc', 'diaspora_pod') |