Your message dated Sat, 21 Mar 2009 15:17:39 GMT
with message-id <[email protected]>
and subject line cyrus21-imapd has been removed from Debian, closing #271516
has caused the Debian Bug report #271516,
regarding cyrus21-imapd: default message authentication data for authenticated
connections
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
271516: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=271516
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: cyrus21-imapd
Version: 2.1.16-8.0.1
Severity: wishlist
Hi,
the attached patch adds the session-wide authentication data to each
message received over LMTP if there is no other authentication info.
This allows the LMTP client to omit the "AUTH=postman" argument to the
MAIL FROM command, which makes it possible to receive mail for a shared
mailbox directly from postfix over an LMTP connection.
Simon
-- System Information:
Debian Release: 3.1
APT prefers testing
APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.26-hetzner
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8
Versions of packages cyrus21-imapd depends on:
ii cyrus21-common 2.1.16-8.0.1 Cyrus mail system (common files)
ii libc6 2.3.2.ds1-16 GNU C Library: Shared libraries an
ii libdb3 3.2.9-20 Berkeley v3 Database Libraries [ru
ii libsasl2 2.1.19-1.1 Authentication abstraction library
ii libssl0.9.7 0.9.7d-4 SSL shared libraries
ii libwrap0 7.6.dbs-6 Wietse Venema's TCP wrappers libra
-- no debconf information
--- imap/lmtpengine.c.orig 2004-09-13 15:21:29.000000000 +0200
+++ imap/lmtpengine.c 2004-09-13 15:34:30.000000000 +0200
@@ -1349,6 +1349,11 @@
if(haveremote) sasl_setprop(cd.conn, SASL_IPREMOTEPORT, &remoteip);
}
+ if(auth_id) {
+ msg->authuser = xstrdup(auth_id);
+ msg->authstate = auth_newstate(msg->authuser, (char *)0);
+ }
+
prot_printf(pout, "220 %s LMTP Cyrus %s ready\r\n",
config_servername,
CYRUS_VERSION);
@@ -1764,7 +1769,12 @@
rset:
if (msg) msg_free(msg);
msg_new(&msg);
-
+
+ if(auth_id) {
+ msg->authuser = xstrdup(auth_id);
+ msg->authstate = auth_newstate(msg->authuser, (char *)0);
+ }
+
continue;
}
goto syntaxerr;
--- End Message ---
--- Begin Message ---
Version: 2.1.18-5.2+rm
The cyrus21-imapd package has been removed from Debian so we are closing
the bugs that were still opened against it.
For more information about this package's removal, read
http://bugs.debian.org/432576 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.
Don't hesitate to reply to this mail if you have any question.
Thank you for your contribution to Debian.
Kind regards,
--
Marco Rodrigues
--- End Message ---