Evolution中不支持Groupwise吗?

升级到Ubuntu 11.10后,现有的Groupwise帐户在Evolution中不起作用。 如果我尝试创建新帐户,则无法选择Groupwise帐户。 似乎Ubuntu 11.10中不再内置此function,并且存储库中没有“evolution-groupwise”软件包……

来自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 

使用任何编辑器,在第48行编辑configure.ac添加该行

 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 

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