Revision 190a2743

b/snf-astakos-app/astakos/im/settings.py
15 15
    4: 0
16 16
})
17 17

  
18
ADMINS = getattr(settings, 'ADMINS', ())
19
MANAGERS = getattr(settings, 'MANAGERS', ADMINS)
20
HELPDESK = getattr(settings, 'HELPDESK', ADMINS)
18
ADMINS = tuple(getattr(settings, 'ADMINS', ()))
19
MANAGERS = tuple(getattr(settings, 'MANAGERS', ()))
20
HELPDESK = tuple(getattr(settings, 'HELPDESK', ()))
21 21

  
22 22
CONTACT_EMAIL = settings.CONTACT_EMAIL
23 23
SERVER_EMAIL = settings.SERVER_EMAIL
b/snf-common/conf/00-snf-common-admins.conf
10 10
#)
11 11
#
12 12
# List of people to receive user feedback notifications.
13
#HELPDESK = ADMINS
13
#HELPDESK = (
14
#     ('Your Name', 'your_email@domain.com'),
15
#)
14 16
#
15 17
# A list of people to receive email notifications on some application events
16 18
# (e.g. account creation/activation).
17
#MANAGERS = ADMINS
19
#MANAGERS = (
20
#     ('Your Name', 'your_email@domain.com'),
21
#)
18 22
#
19 23
## Email configuration
20 24
#EMAIL_HOST = "127.0.0.1"
b/snf-common/synnefo/settings/default/admins.py
10 10
)
11 11

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

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

  
19 23
# Email configuration
20 24
EMAIL_HOST = "127.0.0.1"

Also available in: Unified diff