Tim, Serghei, Robert, all
kmail is having problems getting to imap folders on my imap server. It sends over smtp just fine. My server uses SSL (Plain) for imap access. When I attempt to subscribe to folders on my server (or just open up the server settings), I get the following error:
SASL authentication is not compiled into kio_imap4.
How do I fix this? Which build flag/option needs to be set? Which package (kdebase?)
On 05/05/2011 09:35 PM, David C. Rankin wrote:
Tim, Serghei, Robert, all
kmail is having problems getting to imap folders on my imap server. It sends over smtp just fine. My server uses SSL (Plain) for imap access. When I attempt to subscribe to folders on my server (or just open up the server settings), I get the following error:
SASL authentication is not compiled into kio_imap4.
How do I fix this? Which build flag/option needs to be set? Which package (kdebase?)
build() { _version mkdir -vp ${_builddir} cd ${_builddir} msg "Starting cmake..." cmake ${_source}/${_module}/ \ -DCMAKE_INSTALL_PREFIX=${_prefix} \ -DBUILD_ALL=ON \ -DWITH_SASL=ON \ -DWITH_ARTS=ON \ -DCMAKE_SKIP_RPATH=ON # -DCMAKE_VERBOSE_MAKEFILE=ON \ make }
On 05/05/2011 08:45 PM, Baho Utot wrote:
On 05/05/2011 09:35 PM, David C. Rankin wrote:
Tim, Serghei, Robert, all
kmail is having problems getting to imap folders on my imap server. It sends over smtp just fine. My server uses SSL (Plain) for imap access. When I attempt to subscribe to folders on my server (or just open up the server settings), I get the following error:
SASL authentication is not compiled into kio_imap4.
How do I fix this? Which build flag/option needs to be set? Which package (kdebase?)
build() { _version mkdir -vp ${_builddir} cd ${_builddir} msg "Starting cmake..." cmake ${_source}/${_module}/ \ -DCMAKE_INSTALL_PREFIX=${_prefix} \ -DBUILD_ALL=ON \ -DWITH_SASL=ON \ -DWITH_ARTS=ON \ -DCMAKE_SKIP_RPATH=ON # -DCMAKE_VERBOSE_MAKEFILE=ON \ make }
Duh.. Thanks
I found the kioslave in the kdepim source, but hadn't made it to the cmake flags yet :)
Why do you have -DCMAKE_SKIP_RPATH=ON? I have it building without so far...
On 05/05/2011 08:45 PM, Baho Utot wrote:
On 05/05/2011 09:35 PM, David C. Rankin wrote:
Tim, Serghei, Robert, all
kmail is having problems getting to imap folders on my imap server. It sends over smtp just fine. My server uses SSL (Plain) for imap access. When I attempt to subscribe to folders on my server (or just open up the server settings), I get the following error:
SASL authentication is not compiled into kio_imap4.
How do I fix this? Which build flag/option needs to be set? Which package (kdebase?)
<snip>
-DWITH_SASL=ON \
<snip>
This brings up another question. My server is postfix/dovecot - Why do I need cyrus-sasl support enabled?
On Friday 06 May 2011 05:03:47 David C. Rankin wrote: [...]
<snip>
-DWITH_SASL=ON \
<snip>
This brings up another question. My server is postfix/dovecot - Why do I need cyrus-sasl support enabled?
Because kio_imap4's developers decided to implement SASL authentication using cyrus-sasl :)
On 05/05/2011 08:45 PM, Baho Utot wrote:
On 05/05/2011 09:35 PM, David C. Rankin wrote:
Tim, Serghei, Robert, all
kmail is having problems getting to imap folders on my imap server. It sends over smtp just fine. My server uses SSL (Plain) for imap access. When I attempt to subscribe to folders on my server (or just open up the server settings), I get the following error:
SASL authentication is not compiled into kio_imap4.
How do I fix this? Which build flag/option needs to be set? Which package (kdebase?)
-DWITH_SASL=ON \
-DWITH_SASL=ON fixed it! Thanks. Right now I'm building with:
cmake ${srcdir}/${_svnmod} \ -DCMAKE_INSTALL_PREFIX=${trinity_prefix} \ -DCMAKE_VERBOSE_MAKEFILE=ON \ -DQT_VERSION=3 \ -DWITH_ARTS=ON \ -DWITH_BIRTHDAYS=ON \ -DWITH_CALDAV=ON \ -DWITH_EGROUPWARE=ON \ -DWITH_GROUPDAV=ON \ -DWITH_INDEXLIB=ON \ -DWITH_PAM=ON \ -DWITH_SASL=ON \ -DBUILD_ALL=ON make
I had to build libcaldav from AUR. I tried to find libcarddav, but I couldn't find a good source. Looks like Tim is building it for deb, but I could get the source from quickbuild. Tim - you got a copy handy?