wmdeit_kaform/config.sample.php

16 lines
634 B
PHP
Raw Normal View History

2020-02-21 15:20:42 +01:00
<?php
2021-11-23 13:49:17 +01:00
$CONVERT_CMD = "/usr/local/bin/convert";
$PDFTK_CMD = "/usr/local/bin/pdftk";
2020-02-21 15:20:42 +01:00
2021-11-03 12:33:55 +01: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 16:20:36 +01:00
2020-03-09 16:25:10 +01:00
$mailDest = "someone@example.com";
2021-11-03 12:33:55 +01:00
$mailDestCC = "someone_cc@example.com"; // leave empty if no CC is required
2020-04-16 09:22:32 +02:00
$mailFrom = "someone@example.com";
2020-03-09 16:20:36 +01:00