Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Andraž Levstik (af40359e43ad7bf7a8aa088327aa85a990554b80)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Andraž Levstik <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Andraž Levstik (af40359e43ad7bf7a8aa088327aa85a990554b80)
  • Date: Tue, 14 Jul 2009 00:28:59 -0500

GIT changes to master grimoire by Andraž Levstik
<ruskie+2054d253 AT codemages.net>:

mail/dovecot/8f8b5e2f8df7.patch | 20 --------------------
mail/dovecot/HISTORY | 4 ++++
mail/dovecot/ee173ea99ea6.patch | 23 -----------------------
3 files changed, 4 insertions(+), 43 deletions(-)

New commits:
commit af40359e43ad7bf7a8aa088327aa85a990554b80
Author: Andraž Levstik <ruskie+2054d253 AT codemages.net>
Commit: Andraž Levstik <ruskie+2054d253 AT codemages.net>

dovecot: really removed the patches, thanks lace

diff --git a/mail/dovecot/8f8b5e2f8df7.patch b/mail/dovecot/8f8b5e2f8df7.patch
deleted file mode 100644
index 6e06f00..0000000
--- a/mail/dovecot/8f8b5e2f8df7.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-
-# HG changeset patch
-# User Timo Sirainen <tss AT iki.fi>
-# Date 1246987224 14400
-# Node ID 8f8b5e2f8df7dc6e68630bc47df6ac0e27f344d2
-# Parent d6337be8ae305ee5d095b806f10afc3207f3a261
-pop3: Fixed AUTH PLAIN command when SASL initial response wasn't specified.
-
---- a/src/pop3-login/client-authenticate.c Tue Jul 07 12:40:31 2009 -0400
-+++ b/src/pop3-login/client-authenticate.c Tue Jul 07 13:20:24 2009 -0400
-@@ -319,7 +319,7 @@ bool cmd_auth(struct pop3_client *client
- p = strchr(args, ' ');
- if (p == NULL) {
- mech_name = args;
-- args = "";
-+ args = NULL;
- } else {
- mech_name = t_strdup_until(args, p);
- args = p+1;
-
diff --git a/mail/dovecot/HISTORY b/mail/dovecot/HISTORY
index 6247e42..db3be38 100644
--- a/mail/dovecot/HISTORY
+++ b/mail/dovecot/HISTORY
@@ -1,3 +1,7 @@
+2009-07-14 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
+ * 8f8b5e2f8df7.patch: really removed
+ * ee173ea99ea6.patch: really removed
+
2009-07-13 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
* DETAILS: updated spell to 1.2.1, updated managesieve, sieve
* 8f8b5e2f8df7.patch: removed
diff --git a/mail/dovecot/ee173ea99ea6.patch b/mail/dovecot/ee173ea99ea6.patch
deleted file mode 100644
index 032f566..0000000
--- a/mail/dovecot/ee173ea99ea6.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-
-# HG changeset patch
-# User Timo Sirainen <tss AT iki.fi>
-# Date 1246987501 14400
-# Node ID ee173ea99ea630f624db378ef518984fa959f3f6
-# Parent 8f8b5e2f8df7dc6e68630bc47df6ac0e27f344d2
-auth: Ignore empty initial response strings.
-
---- a/src/auth/auth-request-handler.c Tue Jul 07 13:20:24 2009 -0400
-+++ b/src/auth/auth-request-handler.c Tue Jul 07 13:25:01 2009 -0400
-@@ -364,7 +364,10 @@ bool auth_request_handler_auth_begin(str
- return TRUE;
- }
-
-- if (initial_resp == NULL) {
-+ /* Empty initial response is a "=" base64 string. Completely empty
-+ string shouldn't really be sent, but at least Exim does it,
-+ so just allow it for backwards compatibility.. */
-+ if (initial_resp == NULL || *initial_resp == '\0') {
- initial_resp_data = NULL;
- initial_resp_len = 0;
- } else {
-



  • [SM-Commit] GIT changes to master grimoire by Andraž Levstik (af40359e43ad7bf7a8aa088327aa85a990554b80), Andraž Levstik, 07/14/2009

Archive powered by MHonArc 2.6.24.

Top of Page