* wl-summary.el (wl-summary-insert-thread-entity): If the thread depth is
 reached to wl-summary-max-thread-depth, divide the thread.
+2002-12-12  Yuuichi Teranishi  <teranisi@gohome.org>
+
+       * wl-vars.el (wl-summary-max-thread-depth): New user option.
+
+       * wl-summary.el (wl-summary-insert-thread-entity):
+       If the thread depth is reached to wl-summary-max-thread-depth,
+       divide the thread.
+
 2002-12-08  Kenichi OKADA  <okada@opaopa.org>
 
        * wl-draft.el (wl-draft-send-mail-with-smtp): Fix logic
 
            parent-number (elmo-msgdb-overview-entity-get-number
                           parent-entity))
       (setq number (elmo-msgdb-overview-entity-get-number entity))
-      ;; If thread loop detected, set parent as nil.
+      ;; If thread loop detected or reached to max depth, set parent as nil.
       (setq cur entity)
-      (while cur
+      (while (and cur (< depth wl-summary-max-thread-depth))
        (if (eq number (elmo-msgdb-overview-entity-get-number
                        (setq cur
                              (elmo-msgdb-get-parent-entity cur msgdb))))
            (setq parent-number nil
-                 cur nil)))
+                 cur nil))
+       (incf depth))
       (if (and parent-number
               (not (wl-thread-get-entity parent-number))
               (not force-insert))
 
   :group 'wl-summary
   :group 'wl-pref)
 
+(defcustom wl-summary-max-thread-depth 30
+  "*If thread depth of the message is larger than this value, divide it."
+  :type 'integer
+  :group 'wl-summary
+  :group 'wl-pref)
+
 (defcustom wl-summary-no-from-message "nobody@nowhere?"
   "*A string displayed in summary when no from field exists."
   :type 'string