Project

General

Profile

1
# the address where validator is running and is accessible from the rest of the web
2
services.validator.baseUrl = http://${container.hostname}:${container.port}/${container.context}
3

    
4
# base address for soap web services
5
transport.soap.baseAddress = http://${container.hostname}:${container.port}/${container.context}
6

    
7
transport.soap.force.local.address = false
8

    
9
# the email of the administrator
10
# he will receive all the automatic bug reports and feedback created
11
services.validator.adminEmail = antleb@di.uoa.gr
12

    
13
# the name of the aggregator used for harvesting the repo IS profiles
14
services.validator.aggregator.name = OPENAIRE
15

    
16
# the private key used for signing the direct login links from the OpenAIRE portal
17
services.validator.portallogin.key = 568345
18

    
19

    
20
# If set to true then, when the server is stopped and restarted, all jobs that haven't finished for any reason will restart
21
# If set to false then only jobs that stopped gracefully due to a previous server restart will be restarted
22
# Unless the server has stopped unexpectedly and you are now restarting it, this setting must be left to false
23
services.validator.jobs.totalRestart = false
24

    
25
# the mailhost for the mail service
26
services.validator.mail.host = smtp.gmail.com
27
# the port where the mail service is running
28
services.validator.mail.port = 465
29
# the address that appears in the from field in the mails send by the validator
30
services.validator.mail.fromAddress = no-reply@openaire.eu
31
# the reply-to field value in the mails send by the validator
32
services.validator.mail.replyToAddress = no-reply@openaire.eu
33
# the username of the account used to login in the mail server
34
services.validator.mail.username = test.openaire@gmail.com
35
# the password of the account used to login in the mail server
36
services.validator.mail.password = ^($*@$)*!$
37
# if authentication should take place
38
# if set to false username and password is not needed
39
services.validator.mail.authenticate = true
40
# is set to yes then all mails will not be sent to their targets but to the address specified in services.validator.mail.overrideEmail
41
services.validator.mail.override = false
42
# if set to true then no mails are send, they are only logged as a debug message
43
services.validator.mail.logonly = false
44
# the mode used for the mails send by the validator
45
services.validator.mail.mode = ssl
46
# used by eu.dnetlib.utils.MailLibrary to control debuggin messages
47
services.validator.mail.debug = false
48
# if services.validator.mail.override is true then all mails will be send only to this address
49
services.validator.mail.overrideEmail = antleb@di.uoa.gr
50
# a comma-seperated list of address that will receive all mails about validations and repo registrations
51
services.validator.mail.specialRecipients = antleb@di.uoa.gr
52

    
53
# a comma-seperated list of addresses that have the ability to register repos without the need for validation and registration
54
services.validator.repoRegistration.override = antleb@di.uoa.gr
55
# if set to false then only repositories in the opendoar list can be registered
56
services.validator.repoRegistration.allowNotOpenDoar = true
57

    
58
# do not change
59
services.validator.registration.validationSet = OpenAIRE For Literature Repositories
60

    
61
# how many validation jobs can run concurrently
62
services.validator.concurrentValidations = 5
63
# set to local for local execution of jobs
64
# set to jppf for execution over JPPF infrastructure
65
services.validator.executionMethod = local
66
# how many tasks each validation job can have at most
67
# if a job has more, they will be split to separate jppf jobs containing at most this number of tasks
68
services.validator.task.bundleSize = 5
69

    
70
# the jppf management port used to monitor the behavior of the jppf driver
71
services.validator.jppf.management.host = localhost
72
# the jppf manager port
73
services.validator.jppf.management.port = 11098
(4-4/5)