Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (772 Bytes)

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 = ADMINS
14

    
15
# A list of people to receive email notifications on some application events
16
# (e.g. account creation/activation).
17
MANAGERS = ADMINS
18

    
19
# Email configuration
20
EMAIL_HOST = "127.0.0.1"
21
EMAIL_HOST_USER = ""
22
EMAIL_HOST_PASSWORD = ""
23
EMAIL_SUBJECT_PREFIX = "[email-subject-prefix] "
24
DEFAULT_CHARSET = 'utf-8'
25

    
26
# Address to use for outgoing emails
27
DEFAULT_FROM_EMAIL = "~okeanos <no-reply@grnet.gr>"