Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (433 Bytes)

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

    
6
ADMINS = (
7
    # ('Your Name', 'your_email@domain.com'),
8
)
9

    
10
MANAGERS = ADMINS
11

    
12
# Email configuration
13
EMAIL_HOST = "127.0.0.1"
14
EMAIL_HOST_USER = ""
15
EMAIL_HOST_PASSWORD = ""
16
EMAIL_SUBJECT_PREFIX = "[email-subject-prefix] "
17
DEFAULT_CHARSET = 'utf-8'
18

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