Change configuration options for new version of z-push
This commit is contained in:
parent
35088a7cac
commit
5055ef060d
3 changed files with 32 additions and 6 deletions
|
@ -5,10 +5,12 @@
|
||||||
* Descr : CalDAV backend configuration file
|
* Descr : CalDAV backend configuration file
|
||||||
************************************************/
|
************************************************/
|
||||||
|
|
||||||
define('CALDAV_SERVER', 'https://localhost');
|
define('CALDAV_PROTOCOL', 'https');
|
||||||
|
define('CALDAV_SERVER', 'localhost');
|
||||||
define('CALDAV_PORT', '443');
|
define('CALDAV_PORT', '443');
|
||||||
define('CALDAV_PATH', '/caldav/calendars/%u/');
|
define('CALDAV_PATH', '/caldav/calendars/%u/');
|
||||||
define('CALDAV_PERSONAL', '');
|
define('CALDAV_PERSONAL', 'PRINCIPAL');
|
||||||
define('CALDAV_SUPPORTS_SYNC', true);
|
define('CALDAV_SUPPORTS_SYNC', true);
|
||||||
|
define('CALDAV_MAX_SYNC_PERIOD', 2147483647);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -10,6 +10,29 @@ define('IMAP_PORT', 993);
|
||||||
define('IMAP_OPTIONS', '/ssl/norsh/novalidate-cert');
|
define('IMAP_OPTIONS', '/ssl/norsh/novalidate-cert');
|
||||||
define('IMAP_DEFAULTFROM', '');
|
define('IMAP_DEFAULTFROM', '');
|
||||||
|
|
||||||
|
// for new commit
|
||||||
|
define('SYSTEM_MIME_TYPES_MAPPING', '/etc/mime.types');
|
||||||
|
define('IMAP_AUTOSEEN_ON_DELETE', false);
|
||||||
|
|
||||||
|
define('IMAP_FOLDER_CONFIGURED', true);
|
||||||
|
// Folder prefix is the common part in your names (3, 4)
|
||||||
|
define('IMAP_FOLDER_PREFIX', '');
|
||||||
|
// Inbox will have the preffix preppend (3 & 4 to true)
|
||||||
|
define('IMAP_FOLDER_PREFIX_IN_INBOX', false);
|
||||||
|
// Inbox folder name (case doesn't matter) - (empty in 4)
|
||||||
|
define('IMAP_FOLDER_INBOX', 'INBOX');
|
||||||
|
// Sent folder name (case doesn't matter)
|
||||||
|
define('IMAP_FOLDER_SENT', 'SENT');
|
||||||
|
// Draft folder name (case doesn't matter)
|
||||||
|
define('IMAP_FOLDER_DRAFT', 'DRAFTS');
|
||||||
|
// Trash folder name (case doesn't matter)
|
||||||
|
define('IMAP_FOLDER_TRASH', 'TRASH');
|
||||||
|
// Spam folder name (case doesn't matter). Only showed as special by iOS devices
|
||||||
|
define('IMAP_FOLDER_SPAM', 'SPAM');
|
||||||
|
// Archive folder name (case doesn't matter). Only showed as special by iOS devices
|
||||||
|
define('IMAP_FOLDER_ARCHIVE', 'ARCHIVE');
|
||||||
|
|
||||||
|
|
||||||
// not used
|
// not used
|
||||||
define('IMAP_FROM_SQL_DSN', '');
|
define('IMAP_FROM_SQL_DSN', '');
|
||||||
define('IMAP_FROM_SQL_USER', '');
|
define('IMAP_FROM_SQL_USER', '');
|
||||||
|
@ -29,10 +52,10 @@ define('IMAP_FROM_LDAP_FROM', '#givenname #sn <#mail>');
|
||||||
|
|
||||||
|
|
||||||
// copy outgoing mail to this folder. If not set z-push will try the default folders
|
// copy outgoing mail to this folder. If not set z-push will try the default folders
|
||||||
define('IMAP_SENTFOLDER', '');
|
// define('IMAP_SENTFOLDER', '');
|
||||||
define('IMAP_INLINE_FORWARD', true);
|
// define('IMAP_INLINE_FORWARD', true);
|
||||||
define('IMAP_EXCLUDED_FOLDERS', '');
|
// define('IMAP_EXCLUDED_FOLDERS', '');
|
||||||
define('IMAP_SMTP_METHOD', 'sendmail');
|
// define('IMAP_SMTP_METHOD', 'sendmail');
|
||||||
|
|
||||||
global $imap_smtp_params;
|
global $imap_smtp_params;
|
||||||
$imap_smtp_params = array('host' => 'ssl://localhost', 'port' => 587, 'auth' => true, 'username' => 'imap_username', 'password' => 'imap_password');
|
$imap_smtp_params = array('host' => 'ssl://localhost', 'port' => 587, 'auth' => true, 'username' => 'imap_username', 'password' => 'imap_password');
|
||||||
|
|
|
@ -42,6 +42,7 @@ fi
|
||||||
sed -i "s^define('TIMEZONE', .*^define('TIMEZONE', '$(cat /etc/timezone)');^" /usr/local/lib/z-push/config.php
|
sed -i "s^define('TIMEZONE', .*^define('TIMEZONE', '$(cat /etc/timezone)');^" /usr/local/lib/z-push/config.php
|
||||||
sed -i "s/define('BACKEND_PROVIDER', .*/define('BACKEND_PROVIDER', 'BackendCombined');/" /usr/local/lib/z-push/config.php
|
sed -i "s/define('BACKEND_PROVIDER', .*/define('BACKEND_PROVIDER', 'BackendCombined');/" /usr/local/lib/z-push/config.php
|
||||||
sed -i "s/define('USE_FULLEMAIL_FOR_LOGIN', .*/define('USE_FULLEMAIL_FOR_LOGIN', true);/" /usr/local/lib/z-push/config.php
|
sed -i "s/define('USE_FULLEMAIL_FOR_LOGIN', .*/define('USE_FULLEMAIL_FOR_LOGIN', true);/" /usr/local/lib/z-push/config.php
|
||||||
|
sed -i "s/define('LOG_MEMORY_PROFILER', .*/define('LOG_MEMORY_PROFILER', false);/" /usr/local/lib/z-push/config.php
|
||||||
|
|
||||||
# Configure BACKEND
|
# Configure BACKEND
|
||||||
rm -f /usr/local/lib/z-push/backend/combined/config.php
|
rm -f /usr/local/lib/z-push/backend/combined/config.php
|
||||||
|
|
Loading…
Reference in a new issue