# # This file holds the configuration of oVirt events notification daemon. # The daemon consists of two major services: notification service and engine monitoring. # #---------------------------# # Engine Libraries Location # #---------------------------# # A path to the engine libraries folder under Jboss. Required. engineLib=/usr/share/ovirt-engine/engine.ear/lib #-------------------------------------# # Notification Service Configuration: # #-------------------------------------# # Interval (in seconds) between iterations of dispatching messages to subscribers. Default is 120 seconds. INTERVAL_IN_SECONDS=2 #was 120 # The SMTP mail server address. Required. #MAIL_SERVER=smtp.corp.redhat.com MAIL_SERVER=localhost # The default port of non-secured SMTP server is 25, for secured (ssl enabled) 465. #MAIL_PORT=25 # Required if SSL enabled to authenticate the user. Used also to specify 'from' user address if mail server # supports, when MAIL_FROM is not set. Address is in RFC822 format #MAIL_USER=istein@redhat.com # Required to authenticate the user if mail server requires authentication or if SSL is enabled #MAIL_PASSWORD= # Indicates whether SSL should be used to communicate with mail server. Default is false. #MAIL_ENABLE_SSL=true # If set to true, sends a message in HTML format. Default is false. #HTML_MESSAGE_FORMAT=true # Specifies 'from' address on sent mail in RFC822 format, if supported by mail server. MAIL_FROM=istein@redhat.com # Specifies 'reply-to' address on sent mail in RFC822 format. #MAIL_REPLY_TO= # Amount of days to keep dispatched events on history table. If not set, events remain on history table. #DAYS_TO_KEEP_HISTORY=30 #----------------------------------# # Engine Monitoring Configuration: # #----------------------------------# # Interval (in seconds) between engine server monitoring iterations. Interval is being measured from # the time an iteration is completed. Default is 300 seconds. ENGINE_INTERVAL_IN_SECONDS=3 # Number of retries to monitor server status per iteration. Default is 3 retries. ENGINE_MONITOR_RETRIES=3 # Time (in seconds) to wait between retries. Default is 30 seconds. ENGINE_TIMEOUT_IN_SECONDS=3 # If running Jboss in secure mode, should be set to true. Default is false. #IS_HTTPS_PROTOCOL=true # Specifies the protocol used by Jboss Configuration Connector when SSL is enabled. Default is 'TLS'. #SSL_PROTOCOL=TLS # If running Jboss in secure mode, and wishes to ignore SSL errors, should set to true. Default is false. #SSL_IGNORE_CERTIFICATE_ERRORS=false # If running Jboss in secure mode, and wishes to ignore hostname verification, should set to true. Default is false. # If setting this property to 'true', SSL_IGNORE_CERTIFICATE_ERRORS considered to be set to 'true' as well: disabling host name # verification means that it will not be verified against the certification, therefore certification errors are ignored. #SSL_IGNORE_HOST_VERIFICATION=false # Specifies whether to repeat auditing of failure messages of non-responding engine server. Default is false (meaning # repeated failure messages will NOT be sent to the subscribers) #REPEAT_NON_RESPONSIVE_NOTIFICATION=false