nextcloud-mail2deck/config.php

11 wiersze
528 B
PHP
Czysty Zwykły widok Historia

2019-11-27 16:16:47 +00:00
<?php
2019-12-19 14:42:18 +00:00
define("NC_SERVER", ""); // server.domain
2019-11-27 16:16:47 +00:00
define("NC_USER", "deckbot");
2019-12-19 14:42:18 +00:00
define("NC_PASSWORD", "");
define("MAIL_SERVER", ""); // server.domain
2021-12-31 03:55:38 +00:00
define("MAIL_SERVER_FLAGS", "/no-validate-cert"); // flags needed to connect to server. Refer to https://www.php.net/manual/en/function.imap-open.php for a list of valid flags.
2019-11-27 16:16:47 +00:00
define("MAIL_USER", "incoming");
2019-12-19 14:42:18 +00:00
define("MAIL_PASSWORD", "");
define("DECODE_SPECIAL_CHARACTERS", true); //requires mbstring, if false special characters (like öäüß) won't be displayed correctly
?>