RE: (no subject)

2005-11-15 Thread lkolchin
Hi,

Please use web-cyradm tutorial - www.web-cyradm.org
This is the one you need, I believe.

Regards,
Leon Kolchinsky 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]
Sent: Monday, November 14, 2005 4:30 PM
To: info-cyrus@lists.andrew.cmu.edu
Subject: (no subject)

hi all,
i am trying to configure my cyrus-imap in order to use it with sasl,mysql,pam 
to support multi-domains mail server ..

my main question is:
i am following up a http://workaround.org/articles/ispmail-sarge/ tutorail in 
order to build this mail server ..
this tutorial uses courier-imap instead of cyrus-imap ..

how can i switch to use cyrus-imap instead ?? and what changes should i apply 
in order to make my mail server works ???

i asked on postfix channel on irc and they told me that i had to tell cyrus how 
to use mysql files that i had created for my multi-domain server so can any one 
tell me how to do it ???

i am using debian-sarge as an opertaing system .

last question: does cyrus has any channel on irc ?? what is it's name and what 
is the server name that this channel is connected to??

urs
maisa

Cyrus Home Page: http://asg.web.cmu.edu/cyrus Cyrus Wiki/FAQ: 
http://cyruswiki.andrew.cmu.edu List Archives/Info: 
http://asg.web.cmu.edu/cyrus/mailing-list.html

Cyrus Home Page: http://asg.web.cmu.edu/cyrus
Cyrus Wiki/FAQ: http://cyruswiki.andrew.cmu.edu
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


errors being incorrectly logged -- codes only, no descriptions

2005-11-15 Thread OpenMacNews
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

hi all.

i've cyrus imap v2.2.12 & cvs-head on osx 10.4.3.

in my error logs, i'm seeing errors like:

 devbox lmtp[11095]: Unknown Error Code: -###

where these error_codes are defined in: "./imap/imap_err.strings" as, generally 
:

"KEManager -###" = "imap";
"KEMessage -###" = "description of error";

when correctly mapped, i'd expected to see the more-descriptive text in 
error-logs, e.g.:

 devbox lmtp[11095]: Error : description of error

or some such ...

fwiw, i've posted a bug > a month ago @: 
https://bugzilla.andrew.cmu.edu/show_bug.cgi?id=2721

suggestions? more infor needed?

thx!

richard





- --

/"\
\ /  ASCII Ribbon Campaign
 X   against HTML email, vCards
/ \  & micro$oft attachments

[GPG] OpenMacNews at gmail dot com
fingerprint: 50C9 1C46 2F8F DE42 2EDB  D460 95F7 DDBD 3671 08C6
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (Darwin)

iEYEAREDAAYFAkN6iLgACgkQlffdvTZxCMaQogCfaNDuKl25DfJTqbX4oU7yvXG8
W8wAoLYVwSuoF0QFORMZf4h2CXgJLS7b
=+Dw5
-END PGP SIGNATURE-


Cyrus Home Page: http://asg.web.cmu.edu/cyrus
Cyrus Wiki/FAQ: http://cyruswiki.andrew.cmu.edu
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


Re: errors being incorrectly logged -- codes only, no descriptions

2005-11-15 Thread Henrique de Moraes Holschuh
On Tue, 15 Nov 2005, OpenMacNews wrote:
> suggestions? more infor needed?

Did you try rm -rf et/ in the cyrus toplevel dir, and installing your
distribution's package that provides compile_et?  (it is comerr-dev in
Debian, if that helps).

-- 
  "One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie." -- The Silicon Valley Tarot
  Henrique Holschuh

Cyrus Home Page: http://asg.web.cmu.edu/cyrus
Cyrus Wiki/FAQ: http://cyruswiki.andrew.cmu.edu
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


Re: errors being incorrectly logged -- codes only, no descriptions

2005-11-15 Thread OpenMacNews
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

hi henrique,

thx 4 the reply =)

> Did you try rm -rf et/ in the cyrus toplevel dir, and installing your
> distribution's package that provides compile_et?  (it is comerr-dev in
> Debian, if that helps).

iiuc, close enuf ...

here's the build notes for my current 'state' ... the result of a bunch of 
prior discussions, etc.

note the compile_et stemps ...

[ sorry for the cp here, but 'pastebin' is not reponding at the moment ... :-(  
]

cheers,

richard

cvs co cyrus (11/2/05 19:39:16)

unsetenv CFLAGS CPPFLAGS CXX CXXFLAGS LDFLAGS LDDLFLAGS LD_PREBIND LC_ALL LANG 
LINGUAS
setenv LDFLAGS "-bind_at_load -ldl -L/usr/local/berkeley-db/lib -ldb 
-L/usr/local/cyrus-sasl/lib
- -lsasl2 -lresolv -ldl"
setenv CPPFLAGS "-I/usr/local/berkeley-db/include 
-I/usr/local/cyrus-sasl/include"

perl -pi -e 's/AC_PROG_RANLIB/AC_PROG_LIBTOOL/g' configure.in

glibtoolize --force --copy
aclocal -I cmulocal
autoheader
autoconf

# cref: https://bugzilla.andrew.cmu.edu/show_bug.cgi?id=2729
===
${EDITOR}   master/service-thread.c
@107
 struct sockaddr_storage sin;
 socklen_t len = sizeof(sin);

+/* XXX: OSX doesn't fill sockaddr correctly against AF_UNIX */
+sin.ss_family = AF_UNIX;
+
 /* is this a connection from the local host? */
 if (getpeername(fd, (struct sockaddr *) &sin, &len) == 0) {
if (((struct sockaddr *)&sin)->sa_family == AF_UNIX) {
===

===
${EDITOR}   master/service.c
@112
 struct sockaddr_storage sin;
 socklen_t len = sizeof(sin);

+/* XXX: OSX doesn't fill sockaddr correctly against AF_UNIX */
+sin.ss_family = AF_UNIX;
+
 /* is this a connection from the local host? */
 if (getpeername(fd, (struct sockaddr *) &sin, &len) == 0) {
if (((struct sockaddr *)&sin)->sa_family == AF_UNIX) {
===


./configure \
- --enable-static=yes --enable-shared=yes \
  --prefix=/usr/local/cyrus-imap \
  --exec-prefix=/usr/local/cyrus-imap \
  --bindir=/usr/local/cyrus-imap/bin \
  --sbindir=/usr/local/cyrus-imap/sbin \
  --libexecdir=/usr/local/cyrus-imap/libexec \
  --libdir=/usr/local/cyrus-imap/lib \
  --includedir=/usr/local/cyrus-imap/include \
  --with-cyrus-prefix=/usr/local/cyrus-imap/bin \
  --with-service-path=/usr/local/cyrus-imap/libexec \
  --sysconfdir=/var/MailServer/Conf \
  --datadir=/var/MailServer/Data/cyrus-imap \
  --localstatedir=/var/MailServer/Process \
  --with-pidfile=/var/MailServer/Process/cyrus-imap.pid \
  --mandir=/var/Documentation/man \
- --with-bdb \
- --with-bdb-libdir=/usr/local/berkeley-db/lib \
- --with-bdb-incdir=/usr/local/berkeley-db/include \
  --with-sasl=/usr/local/cyrus-sasl/ \
- --with-openssl=/usr/local/ssl \
- --with-perl=/usr/local/perl5/bin/perl \
- --with-libwrap \
- --with-auth=unix \
- --with-idle=idled \
- --disable-gssapi --without-gss_impl \
- --enable-listext \
- --enable-server \
- --enable-cyradm \
- --disable-cmulocal \
- --enable-murder \
- --with-syslogfacility=LOCAL6 \
- --with-com_err=/usr \
- --enable-sieve \
- --with-snmp=/usr/local/net-snmp \
- --disable-nntp

perl -pi -e 's/\/usr\/lib\/libcom_err.a/-lcom_err/g' ./imap/Makefile
perl -pi -e 's/\/usr\/lib\/libcom_err.a/-lcom_err/g' ./master/Makefile
perl -pi -e 's/\/usr\/lib\/libcom_err.a/-lcom_err/g' ./notifyd/Makefile
perl -pi -e 's/\/usr\/lib\/libcom_err.a/-lcom_err/g' ./SIEVE/Makefile
perl -pi -e 's/\/usr\/lib\/libcom_err.a/-lcom_err/g' ./timsieved/Makefile

cd /usr/ports/cyrus-imap/et && compile_et test1.et
cd /usr/ports/cyrus-imap/et && compile_et test2.et
cd /usr/ports/cyrus-imap/imap && compile_et imap_err.et
cd /usr/ports/cyrus-imap/imap && compile_et mupdate_err.et
cd /usr/ports/cyrus-imap/imap && compile_et nntp_err.et
cd /usr/ports/cyrus-imap/SIEVE && compile_et sieve_err.et

cd /usr/ports/cyrus-imap
make depend
make all
make install



- --

/"\
\ /  ASCII Ribbon Campaign
 X   against HTML email, vCards
/ \  & micro$oft attachments

[GPG] OpenMacNews at gmail dot com
fingerprint: 50C9 1C46 2F8F DE42 2EDB  D460 95F7 DDBD 3671 08C6
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (Darwin)

iEYEAREDAAYFAkN6pqsACgkQlffdvTZxCMaOzACePAW8v/ZxCVQFTTdboGrBkiuF
YzIAn2a9KTu+64mX9U4BasLlOsuCa+bi
=m6qk
-END PGP SIGNATURE-


Cyrus Home Page: http://asg.web.cmu.edu/cyrus
Cyrus Wiki/FAQ: http://cyruswiki.andrew.cmu.edu
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


Cyrus in Debian distro (2.1.18) and toltec

2005-11-15 Thread Caleb Walker
Hello all,
I am trying to use toltec with my cyrus installation so that I can have
shared calendars with my Windows clients.  When I try to configure the
connector it complains about SETANNOTATION and stops.  Am I out of luck
with this version of Cyrus?  What can I do to make this work?
Thanks,
Caleb


Cyrus Home Page: http://asg.web.cmu.edu/cyrus
Cyrus Wiki/FAQ: http://cyruswiki.andrew.cmu.edu
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


Re: Cyrus in Debian distro (2.1.18) and toltec

2005-11-15 Thread Simon Matter
> Hello all,
> I am trying to use toltec with my cyrus installation so that I can have
> shared calendars with my Windows clients.  When I try to configure the
> connector it complains about SETANNOTATION and stops.  Am I out of luck
> with this version of Cyrus?  What can I do to make this work?

IIRC there is a annotation patch available on the toltec site which you
have to apply to cyrus to make it work. I think you should find something
about it in the archives.

Simon

> Thanks,
> Caleb
>
> 
> Cyrus Home Page: http://asg.web.cmu.edu/cyrus
> Cyrus Wiki/FAQ: http://cyruswiki.andrew.cmu.edu
> List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html
>

Cyrus Home Page: http://asg.web.cmu.edu/cyrus
Cyrus Wiki/FAQ: http://cyruswiki.andrew.cmu.edu
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html