-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/tbar0970/jethro-pmm
- Loading branch information
Showing
2 changed files
with
81 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,27 @@ | ||
; Edit the values below and save as another filename | ||
; | ||
; Then run php email_report.php /path/to/my/config.ini | ||
; | ||
REPORT_ID=1; | ||
REPORT_ID=4; | ||
; | ||
EMAIL_FROM='[email protected]'; | ||
; | ||
EMAIL_FROM_NAME='no-reply'; | ||
; | ||
;messages to appear above the report table in the email, use <br> for new line <b>for bold</b> etc. | ||
MESSAGE='Include a message about the report.'; | ||
; | ||
;send to one or more email addresses separated by a comma, and without spaces | ||
;e.g. EMAIL_TO='[email protected]'; or EMAIL_TO='[email protected],[email protected]'; | ||
EMAIL_TO='[email protected]'; | ||
; | ||
;Enter a GROUP_ID number to overide the EMAIL_TO addresses and send to a jethro group instead - otherwise leave next line as GROUP_ID=0; | ||
GROUP_ID=0; | ||
; | ||
;if you would like the report attached as a .csv file then leave this next line as CSV=1; | ||
;Otherwise change to CSV=0; | ||
CSV=1; | ||
; | ||
;if your server can not email using Jethro-pmm built-in email script (swiftmailer) try using php mail() by changing the next line to PHP_MAIL=1; otherwise leave as PHP_MAIL=0; | ||
PHP_MAIL=0; | ||
|
||
VERBOSE=0; | ||
|