Evolution 不支持 Groupwise 吗?

Evolution 不支持 Groupwise 吗?

升级到 Ubuntu 11.10 后,现有的 Groupwise 帐户在 Evolution 中不起作用。如果我尝试创建新帐户,则没有选择 Groupwise 帐户的选项。看来此功能不再内置于 Ubuntu 11.10 中,并且软件包“evolution-groupwise”在存储库中不可用...

答案1

从 Ubuntu 论坛转录的答案:

首先安装 git

sudo apt-get install git

接下来下载源代码(几个命令)

git clone git://git.gnome.org/evolution-groupwise
cd evolution-groupwise
git checkout -b 3.2.0-patch EVOLUTION_GROUPWISE_3_2_0

# This is the patch for the SOAP port bug
git cherry-pick 3aae80f55d5fd565274f19210564e74d5350a66c 

使用任何编辑器,configure.ac在第 48 行左右添加以下行

AC_CHECK_LIB(gthread-2.0, g_thread_init)

安装依赖项

sudo apt-get build-dep evolution

编译

./autogen.sh
make
sudo make install

最后,使用任何编辑器,编辑/etc/services添加行

groupwise 1677/tcp
groupwise 1677/udp

答案2

我创建了一个临时解决方案:http://ubuntuforums.org/showthread.php?t=1859907

相关内容