From d4b321629a45edbc3fa9e19a615bec51c31da922 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Thu, 28 Jan 1999 19:42:42 +0100
Subject: [PATCH] Enabled search and fetch.

Rev: lib/modules/Protocols.pmod/IMAP.pmod/imap_server.pike:1.9
---
 .gitattributes                                        | 8 ++++++++
 lib/modules/Protocols.pmod/IMAP.pmod/imap_server.pike | 5 +++--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/.gitattributes b/.gitattributes
index a927944032..7bd20ae126 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,2 +1,10 @@
 [attr]binary -text -crlf -diff -ident
 * text ident
+
+# Handling of foreign (ie CVS) identifiers.
+#
+[attr]foreign_ident -ident block_commit=Remove-foreign_ident-attribute-before-commit.
+# Files containing CVS ids follow.
+# Remove the corresponding line before committing
+# changes to these files.
+/lib/modules/Protocols.pmod/IMAP.pmod/imap_server.pike foreign_ident
diff --git a/lib/modules/Protocols.pmod/IMAP.pmod/imap_server.pike b/lib/modules/Protocols.pmod/IMAP.pmod/imap_server.pike
index e09138216b..a9299bfdec 100644
--- a/lib/modules/Protocols.pmod/IMAP.pmod/imap_server.pike
+++ b/lib/modules/Protocols.pmod/IMAP.pmod/imap_server.pike
@@ -1,5 +1,6 @@
 /* imap_server.pike
  *
+ * $Id: imap_server.pike,v 1.9 1999/01/28 18:42:42 grubba Exp $
  */
 
 mapping unauth_commands =
@@ -45,8 +46,8 @@ mapping select_commands =
 //    "check" : .requests.check,
 //    "close" : .requests.close,
 //    "expunge" : .requests.expunge,
-//    "search" : .requests.search,
-//    "fetch" : .requests.fetch,
+   "search" : .requests.search,
+   "fetch" : .requests.fetch,
 //    "store" : .requests.store,
 //    "copy" : .requests.copy,
 //    "uid" : .requests.uid
-- 
GitLab