wmdeit_kaform/config.sample.php

14 lines
579 B
PHP
Raw Normal View History

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