From 7d0ad65907d8df9d46bc28a52ed7987b0edbfd9d Mon Sep 17 00:00:00 2001 From: Brian Major Date: Fri, 11 Dec 2015 12:20:02 -0800 Subject: [PATCH] t72306 - email config file --- .../config/ac-admin-email.properties | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 projects/cadcAccessControl-Admin/config/ac-admin-email.properties diff --git a/projects/cadcAccessControl-Admin/config/ac-admin-email.properties b/projects/cadcAccessControl-Admin/config/ac-admin-email.properties new file mode 100644 index 00000000..80b5bb46 --- /dev/null +++ b/projects/cadcAccessControl-Admin/config/ac-admin-email.properties @@ -0,0 +1,32 @@ +### +# +# This file is used by the cadcAccessControl-Admin tool for sending +# account approval messages to newly approved users. +# +# If this file is not present the admin tool will continue to function +# but without sending an email. +# +# 5 fields are requried: +# +# smtp.host= The SMTP host name. +# smtp.sender= The user who will send the email. +# smtp.replyto= The reply to email address. +# mail.subject The subject of the email. +# mail.body=body The email body. The %s character in the +# body will be replaced with the user's +# userid (if present). The # character in +# the body will be replaced with a +# carriage return. +# +# 1 field is optional: +# +# smtp.bcc= A single bcc email address +# +### + +smtp.host=example.host +smtp.sender=id@example.com +smtp.replyto=id@example.com +smtp.bcc=id@example.com +mail.subject=New Account +mail.body=Dear User##Your new account is %s ##Thank you -- GitLab