升级到Ubuntu11.10之后,现有的Groupwise帐户在进化论中无法工作。如果我尝试创建一个新帐户,就无法选择Groupwise帐户。这个功能似乎不再内置于Ubuntu11.10,并且“进化-群智”软件包在存储库中不可用.
发布于 2012-02-26 05:22:41
从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
add
groupwise 1677/tcp
groupwise 1677/udp
发布于 2011-10-17 17:08:34
我创建了一个临时解决方案:http://ubuntuforums.org/showthread.php?t=1859907
https://askubuntu.com/questions/66272
复制相似问题