|
<?php
|
|
$CONVERT_CMD = "/usr/local/bin/convert";
|
|
$PDFTK_CMD = "/usr/local/bin/pdftk";
|
|
|
|
$mailHost = 'email.wikimedia.de'; // Specify main and backup server
|
|
$mailPort = 25; // Set the SMTP port
|
|
$mailSMTPAuth = false; // Enable SMTP authentication
|
|
$mailUsername = 'mailuser'; // SMTP username
|
|
$mailPassword = 'mailpasswd'; // SMTP password
|
|
$mailSMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted
|
|
|
|
$mailDest = "alpcentaur@posteo.net";
|
|
$mailDestCC = ""; // leave empty if no CC is required
|
|
$mailFrom = "luca@cannabinieri.de";
|
|
|