wmdeit_kaform/config.sample.php

14 lines
579 B
PHP
Raw Normal View History

2020-02-21 14:20:42 +00:00
<?php
$CONVERT_CMD = "/usr/local/bin/pdftk";
2020-03-09 15:20:36 +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:25:10 +00:00
$mailDest = "someone@example.com";
2020-04-16 07:22:32 +00:00
$mailFrom = "someone@example.com";
2020-03-09 15:20:36 +00:00