PDA

View Full Version : Cyrus IMAP/saslauthd Related Messages


Bob Chiodini
15th May 2006, 01:00 PM
I installed FC5 (clean install) on Saturday and have finally gotten
around to looking at the logs. I'm seeing two different messages
related to Cyrus IMAP, the first in the LogWatch daily report:

--------------------- sasl auth daemon Begin ------------------------



**Unmatched Entries**

Deprecated pam_stack module called from service "imap"
Deprecated pam_stack module called from service "imap"

The second in /var/log/messages:

imap[14490]: auxpropfunc error invalid parameter supplied
imaps[14493]: auxpropfunc error invalid parameter supplied
lmtpunix[14506]: auxpropfunc error invalid parameter supplied

Below are my cyrus.conf and imapd.conf files. These files were taken
from the FC4 installation along with the /var/spool/imap
and /var/lib/imap directories.

Any hints.

Bob...


cyrus.conf:

cat /etc/cyrus.conf
# standard standalone server implementation

START {
# do not delete this entry!
recover cmd="ctl_cyrusdb -r"

# this is only necessary if using idled for IMAP IDLE
idled cmd="idled"
}

# UNIX sockets start with a slash and are put into /var/lib/imap/sockets
SERVICES {
# add or remove based on preferences
imap cmd="imapd" listen="imap" prefork=1
imaps cmd="imapd -s" listen="imaps" prefork=1
pop3 cmd="pop3d" listen="pop3" prefork=0
pop3s cmd="pop3d -s" listen="pop3s" prefork=0
sieve cmd="timsieved" listen="sieve" prefork=0

# these are only necessary if receiving/exporting usenet via NNTP
# nntp cmd="nntpd" listen="nntp" prefork=3
# nntps cmd="nntpd -s" listen="nntps" prefork=1

# at least one LMTP is required for delivery
# lmtp cmd="lmtpd" listen="lmtp" prefork=0
lmtpunix cmd="lmtpd" listen="/var/lib/imap/socket/lmtp" prefork=1

# this is only necessary if using notifications
# notify cmd="notifyd" listen="/var/lib/imap/socket/notify" proto="udp" prefork=1
}

EVENTS {
# this is required
checkpoint cmd="ctl_cyrusdb -c" period=30

# this is only necessary if using duplicate delivery suppression,
# Sieve or NNTP
delprune cmd="cyr_expire -E 3" at=0400

# this is only necessary if caching TLS sessions
tlsprune cmd="tls_prune" at=0400
}

imapd.conf:

configdirectory: /var/lib/imap
partition-default: /var/spool/imap
admins: cyrus
sievedir: /var/lib/imap/sieve
sendmail: /usr/sbin/sendmail
hashimapspool: true
sasl_pwcheck_method: saslauthd
sasl_mech_list: PLAIN
tls_cert_file: /etc/pki/cyrus-imapd/cyrus-imapd-littlenail.pem
tls_key_file: /etc/pki/cyrus-imapd/cyrus-imapd-littlenail.pem
tls_ca_file: /etc/pki/cyrus-imapd/cyrus-imapd-littlenail.pem
# tls_ca_file: /etc/pki/tls/certs/ca-bundle.crt
altnamespace: true
autoquota: -1
#autocreateinboxfolders: Drafts|Templates|Sent Items
#autosubscribeinboxfolders: Drafts|Templates|Sent Items
servername: littlenail.homelinux.net


--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list

Paul Howarth
15th May 2006, 01:20 PM
Bob Chiodini wrote:
> I installed FC5 (clean install) on Saturday and have finally gotten
> around to looking at the logs. I'm seeing two different messages
> related to Cyrus IMAP, the first in the LogWatch daily report:
>
> --------------------- sasl auth daemon Begin ------------------------
>
>
>
> **Unmatched Entries**
>
> Deprecated pam_stack module called from service "imap"
> Deprecated pam_stack module called from service "imap"

From FC5 onwards, lines like this in PAM configuration files:
auth required pam_stack.so service=system-auth
account required pam_stack.so service=system-auth

Should be replaced by:
auth include system-auth
account include system-auth

You should bugzilla that.

> The second in /var/log/messages:
>
> imap[14490]: auxpropfunc error invalid parameter supplied
> imaps[14493]: auxpropfunc error invalid parameter supplied
> lmtpunix[14506]: auxpropfunc error invalid parameter supplied
>
> Below are my cyrus.conf and imapd.conf files.

That looks like a problem Alexander will be able to help you with :-)

Paul.

--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list

Bob Chiodini
15th May 2006, 01:30 PM

On Mon, 2006-05-15 at 13:16 +0100, Paul Howarth wrote:
> Bob Chiodini wrote:
> > I installed FC5 (clean install) on Saturday and have finally gotten
> > around to looking at the logs. I'm seeing two different messages
> > related to Cyrus IMAP, the first in the LogWatch daily report:
> >
> > --------------------- sasl auth daemon Begin ------------------------
> >
> >
> >
> > **Unmatched Entries**
> >
> > Deprecated pam_stack module called from service "imap"
> > Deprecated pam_stack module called from service "imap"
>
> From FC5 onwards, lines like this in PAM configuration files:
> auth required pam_stack.so service=system-auth
> account required pam_stack.so service=system-auth
>
> Should be replaced by:
> auth include system-auth
> account include system-auth
>
> You should bugzilla that.
>
> > The second in /var/log/messages:
> >
> > imap[14490]: auxpropfunc error invalid parameter supplied
> > imaps[14493]: auxpropfunc error invalid parameter supplied
> > lmtpunix[14506]: auxpropfunc error invalid parameter supplied
> >
> > Below are my cyrus.conf and imapd.conf files.
>
> That looks like a problem Alexander will be able to help you with :-)
>
> Paul.
>

Paul,

Thanks. Will do.

Yes Alexander has been helpful in the past.

Bob...

--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list

Bob Chiodini
15th May 2006, 01:50 PM
On Mon, 2006-05-15 at 08:22 -0400, Bob Chiodini wrote:
> On Mon, 2006-05-15 at 13:16 +0100, Paul Howarth wrote:
> > Bob Chiodini wrote:
> > > I installed FC5 (clean install) on Saturday and have finally gotten
> > > around to looking at the logs. I'm seeing two different messages
> > > related to Cyrus IMAP, the first in the LogWatch daily report:
> > >
> > > --------------------- sasl auth daemon Begin ------------------------
> > >
> > >
> > >
> > > **Unmatched Entries**
> > >
> > > Deprecated pam_stack module called from service "imap"
> > > Deprecated pam_stack module called from service "imap"
> >
> > From FC5 onwards, lines like this in PAM configuration files:
> > auth required pam_stack.so service=system-auth
> > account required pam_stack.so service=system-auth
> >
> > Should be replaced by:
> > auth include system-auth
> > account include system-auth
> >
> > You should bugzilla that.
> >
> > > The second in /var/log/messages:
> > >
> > > imap[14490]: auxpropfunc error invalid parameter supplied
> > > imaps[14493]: auxpropfunc error invalid parameter supplied
> > > lmtpunix[14506]: auxpropfunc error invalid parameter supplied
> > >
> > > Below are my cyrus.conf and imapd.conf files.
> >
> > That looks like a problem Alexander will be able to help you with :-)
> >
> > Paul.
> >
>
> Paul,
>
> Thanks. Will do.
>
> Yes Alexander has been helpful in the past.
>
> Bob...
>

FYI:

https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=191710

Bob...

--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list

Bob Chiodini
16th May 2006, 03:00 PM
On Mon, 2006-05-15 at 07:50 -0400, Bob Chiodini wrote:
> I installed FC5 (clean install) on Saturday and have finally gotten
> around to looking at the logs. I'm seeing two different messages
> related to Cyrus IMAP, the first in the LogWatch daily report:
>
> --------------------- sasl auth daemon Begin ------------------------
>
>
>
> **Unmatched Entries**
>
> Deprecated pam_stack module called from service "imap"
> Deprecated pam_stack module called from service "imap"
>
> The second in /var/log/messages:
>
> imap[14490]: auxpropfunc error invalid parameter supplied
> imaps[14493]: auxpropfunc error invalid parameter supplied
> lmtpunix[14506]: auxpropfunc error invalid parameter supplied
>
> Below are my cyrus.conf and imapd.conf files. These files were taken
> from the FC4 installation along with the /var/spool/imap
> and /var/lib/imap directories.
>
> Any hints.
>
> Bob...
>
>

As Paul suggested removing pam_stack.so corrected the first problem.

The auxpropfunc message was due the ldapdb plugin. Removing
cyrus-sasl-ldap takes care of the error.

Bob...

--
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list