Statistics
| Branch: | Tag: | Revision:

root / snf-common / synnefo / settings / default / admins.py @ 0ede3879

History | View | Annotate | Download (1 kB)

1
# -*- coding: utf-8 -*-
2
#
3
# Admin names and email addresses
4
##################################
5

    
6
# List of people who receive application notifications, such as code error
7
# tracebacks. It is recommended to have at least one entry in this list.
8
ADMINS = (
9
    # ('Your Name', 'your_email@domain.com'),
10
)
11

    
12
# List of people to receive user feedback notifications.
13
HELPDESK = (
14
    # ('Your Name', 'your_email@domain.com'),
15
)
16

    
17
# A list of people to receive email notifications on some application events
18
# (e.g. account creation/activation).
19
MANAGERS = (
20
    # ('Your Name', 'your_email@domain.com'),
21
)
22

    
23
# Email configuration
24
EMAIL_HOST = "127.0.0.1"
25
EMAIL_HOST_USER = ""
26
EMAIL_HOST_PASSWORD = ""
27
EMAIL_SUBJECT_PREFIX = "[email-subject-prefix] "
28
DEFAULT_CHARSET = 'utf-8'
29

    
30
# Address to use for outgoing emails
31
DEFAULT_FROM_EMAIL = "synnefo <no-reply@synnefo.org>"
32

    
33
# Email where users can contact for support
34
CONTACT_EMAIL = "support@synnefo.org"
35

    
36
# Email address the emails sent by the service will come from
37
SERVER_EMAIL = "Synnefo cloud <cloud@synnefo.org>"