wmdeit_kaform/config.sample.php

16 lines
634 B
PHP
Raw Normal View History

2020-02-21 14:20:42 +00:00
<?php
2021-11-23 12:49:17 +00:00
$CONVERT_CMD = "/usr/local/bin/convert";
$PDFTK_CMD = "/usr/local/bin/pdftk";
2020-02-21 14:20:42 +00:00
2021-11-03 11:33:55 +00:00
$mailHost = 'mailserver.example.com'; // Specify main and backup server
$mailPort = 587; // Set the SMTP port
$mailSMTPAuth = true; // Enable SMTP authentication
$mailUsername = 'mailuser'; // SMTP username
$mailPassword = 'mailpasswd'; // SMTP password
$mailSMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted
2020-03-09 15:20:36 +00:00
2020-03-09 15:25:10 +00:00
$mailDest = "someone@example.com";
2021-11-03 11:33:55 +00:00
$mailDestCC = "someone_cc@example.com"; // leave empty if no CC is required
2020-04-16 07:22:32 +00:00
$mailFrom = "someone@example.com";
2020-03-09 15:20:36 +00:00