mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-10 03:23:13 +00:00
25 lines
668 B
Plaintext
25 lines
668 B
Plaintext
## E-mail sent to designated address when an internal server error occurs
|
|
##
|
|
## Parameters: {0} DSpace server URL
|
|
## {1} Date & time
|
|
## {2} Session ID
|
|
## {3} URL + HTTP parameters, if any
|
|
## {4} Exception stack trace
|
|
## {5} User details
|
|
## {6} IP address
|
|
##
|
|
## See org.dspace.core.Email for information on the format of this file.
|
|
##
|
|
#set($subject = "${config.get('dspace.name')}: Internal Server Error")
|
|
An internal server error occurred on ${params[0]}:
|
|
|
|
Date: ${params[1]}
|
|
Session ID: ${params[2]}
|
|
User: ${params[5]}
|
|
IP address: ${params[6]}
|
|
|
|
${params[3]}
|
|
|
|
Exception:
|
|
${params[4]}
|