V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
pfitseng
V2EX  ›  问与答

这次封 gmail 带来的附加好处。。看到有人说 eas,查了一下,貌似比 imap 要好,顺手看到 Z-Push

  •  
  •   pfitseng · 2014-12-31 17:33:53 +08:00 · 2818 次点击
    这是一个创建于 3406 天前的主题,其中的信息可能已经有所发展或是发生改变。

    https://github.com/fmbiete/Z-Push-contrib
    问题来了,有人部署过Z-Push吗,有没有什么明显的缺点?看了下他的网站,和iphone几乎全兼容。

    4 条回复    2015-01-05 14:49:46 +08:00
    archean
        1
    archean  
       2014-12-31 21:45:02 +08:00
    看起来不错,试试看。
    pfitseng
        2
    pfitseng  
    OP
       2015-01-04 17:13:45 +08:00
    今天折腾了一下,没成功。。。
    pfitseng
        3
    pfitseng  
    OP
       2015-01-05 14:45:16 +08:00
    简单写写怎么搞,用的是fastmail

    系统debian7
    主要要装php5-imap libawl-php php-soap

    php.ini里改
    max_execution_time=600
    short_open_tag=On
    include_path = "/usr/share/awl/inc"

    Z-Push-contrib/config.php 参照文档
    define('USE_FULLEMAIL_FOR_LOGIN', true); 允许全名登录
    define('BACKEND_PROVIDER', 'BackendIMAP');只用imap后端
    另外 /var/log/z-push/ /var/lib/z-push/ 这2个目录给php的写权限


    Z-Push-contrib/backend/imap/config.php参照文档
    改这个让它能发信
    define('IMAP_SMTP_METHOD', 'smtp');
    $imap_smtp_params = array('host' => 'ssl://mail.messagingengine.com', 'port' => 465, 'auth' => true, 'username' => 'imap_username', 'password' => 'imap_password');

    nginx配置,也可以参照它的,我就直接放到已有的域名下面了,省得再买张证书
    location /Microsoft-Server-ActiveSync {
    alias /data/www/Z-Push-contrib/;
    }

    location ~ ^/Microsoft-Server-ActiveSync {
    alias /data/www/Z-Push-contrib/index.php;
    include /etc/nginx/fastcgi_params;
    fastcgi_index index.php;
    fastcgi_param HTTPS on;
    fastcgi_param SCRIPT_FILENAME $request_filename;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    # Z-Push Ping command will be alive for 470s, but be safe
    fastcgi_read_timeout 630;
    }
    pfitseng
        4
    pfitseng  
    OP
       2015-01-05 14:49:46 +08:00
    差点忘了,这个不改过不了验证
    define('IMAP_OPTIONS', '/ssl');
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5585 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 152ms · UTC 08:25 · PVG 16:25 · LAX 01:25 · JFK 04:25
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.