mirror of
https://github.com/YunoHost-Apps/z-push_ynh.git
synced 2024-09-03 18:05:58 +02:00
Upgrade to 2.5.1
This commit is contained in:
parent
4f74e525f2
commit
52ce03da19
5 changed files with 18 additions and 9 deletions
|
@ -8,7 +8,7 @@ If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to
|
|||
## Overview
|
||||
Z-Push is an Exchange ActiveSync fronted written in php which lets you synchronize emails (imap/smtp backend) and calendar/contacts (carddav and caldav backend)
|
||||
|
||||
**Shipped version:** 2.5.0
|
||||
**Shipped version:** 2.5.1
|
||||
|
||||
## Current status
|
||||
- [x] Z-push for Yunohost supports IMAP sync and Carddav/Caldav sync if Baikal or Nextcloud is installed
|
||||
|
@ -20,7 +20,7 @@ Z-Push is an Exchange ActiveSync fronted written in php which lets you synchroni
|
|||
- [x] The current imap backend configuration seems able to handle email addresses different from login (for example login : john and email john.doe@domain.tld instead of john@domain.tld) - Further testing required !
|
||||
- [x] The sources are based on http://download.z-push.org/final/
|
||||
- [x] Autodiscover implemented
|
||||
- [x] Use of version 2.5.0 final
|
||||
- [x] Use of version 2.5.1 final
|
||||
|
||||
## Documentation
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SOURCE_URL=https://github.com/Z-Hub/Z-Push/archive/2.5.0.tar.gz
|
||||
SOURCE_SUM=64a56959d8bd8eaacee929cf0c08d356e18e7cd3c5f6490c4c55e68dba1be860
|
||||
SOURCE_URL=https://github.com/Z-Hub/Z-Push/archive/2.5.1.tar.gz
|
||||
SOURCE_SUM=cba4cf6599a008c4b1e3467f710cee366d131960435ec688001f27edd92ebd16
|
||||
SOURCE_SUM_PRG=sha256sum
|
||||
SOURCE_FORMAT=tar.gz
|
||||
SOURCE_IN_SUBDIR=true
|
||||
|
|
|
@ -123,7 +123,6 @@ define('IMAP_EXCLUDED_FOLDERS', '');
|
|||
// 'sql' - the username will be the result of a sql query. REMEMBER TO INSTALL PHP-PDO AND PHP-DATABASE
|
||||
// 'ldap' - the username will be the result of a ldap query. REMEMBER TO INSTALL PHP-LDAP!!
|
||||
// '@mydomain.com' - the username is used and the given string will be appended
|
||||
//define('IMAP_DEFAULTFROM', '@DOMAINTOCHANGE');
|
||||
define('IMAP_DEFAULTFROM', '');
|
||||
|
||||
// DSN: formatted PDO connection string
|
||||
|
@ -203,11 +202,10 @@ global $imap_smtp_params;
|
|||
// IMPORTANT: To use SSL you must use PHP 5.1 or later, install openssl libs and use ssl:// within the host variable
|
||||
// IMPORTANT: To use SSL with PHP 5.6 you should set verify_peer, verify_peer_name and allow_self_signed
|
||||
//$imap_smtp_params = array('host' => 'ssl://localhost', 'port' => 465, 'auth' => true, 'username' => 'imap_username', 'password' => 'imap_password');
|
||||
// If you want to use STARTTLS when the server is supporting it, you just need to enable authentication on a non SSL host variable.
|
||||
$imap_smtp_params = array('host' => 'tcp://__IMAP_SERVER__', 'port' => 587, 'auth' => true, 'username' => 'imap_username', 'password' => 'imap_password', 'localhost' => '__IMAP_SERVER__', 'verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true);
|
||||
|
||||
|
||||
|
||||
|
||||
// If you are using IMAP_SMTP_METHOD = mail or sendmail and your sent messages are not correctly displayed you can change this to "\n".
|
||||
// BUT, it doesn't comply with RFC 2822 and will break if using smtp method
|
||||
define('MAIL_MIMEPART_CRLF', "\r\n");
|
||||
|
@ -220,3 +218,8 @@ define('SYSTEM_MIME_TYPES_MAPPING', '/etc/mime.types');
|
|||
|
||||
// Use BackendCalDAV for Meetings. You cannot hope to get that functionality working without a caldav backend.
|
||||
define('IMAP_MEETING_USE_CALDAV', __FLAGTOCHANGE__);
|
||||
|
||||
// If your IMAP server allows authenticating via GSSAPI, php-imap will not fall back properly to other authentication
|
||||
// methods and you will be unable to log in. Uncomment the following line to disable that authentication method.
|
||||
// Multiple methods can be specified as a comma-separated string.
|
||||
// define('IMAP_DISABLE_AUTHENTICATOR', 'GSSAPI');
|
||||
|
|
|
@ -74,6 +74,12 @@
|
|||
* using the memcache provider for multi-host environments.
|
||||
* When another implementation should be used, the class can be set here explicitly.
|
||||
* If empty Z-Push will try to use available providers.
|
||||
|
||||
* Possible values:
|
||||
* IpcSharedMemoryProvider - default. Requires z-push-ipc-sharedmemory package.
|
||||
* IpcMemcachedProvider - requires z-push-ipc-memcached package. It is necessary to set up
|
||||
* memcached server before (it won't be installed by z-push-ipc-memcached).
|
||||
* IpcWincacheProvider - for windows systems.
|
||||
*/
|
||||
define('IPC_PROVIDER', '');
|
||||
|
||||
|
@ -103,7 +109,7 @@
|
|||
* LOGAUTHFAIL is logged to the LOGBACKEND.
|
||||
*/
|
||||
define('LOGBACKEND', 'filelog');
|
||||
define('LOGLEVEL', LOGLEVEL_INFO);
|
||||
define('LOGLEVEL', LOGLEVEL_WBXML);
|
||||
define('LOGAUTHFAIL', false);
|
||||
|
||||
// To save e.g. WBXML data only for selected users, add the usernames to the array
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"en": "Z-Push is an ActiveSync frontend that helps you synchronize emails, calendar and contacts",
|
||||
"fr": "Z-Push est un frontend ActiveSync qui permet de synchroniser emails, calendrier et contacts"
|
||||
},
|
||||
"version": "2.5.0~ynh1",
|
||||
"version": "2.5.1~ynh1",
|
||||
"url": "https://z-push.org",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"maintainer": {
|
||||
|
|
Loading…
Add table
Reference in a new issue